File: BUILD.bazel

package info (click to toggle)
picotool 2.2.0-a4%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,084 kB
  • sloc: cpp: 61,059; ansic: 2,999; asm: 2,048; perl: 219; sh: 212; python: 97; makefile: 41; xml: 18
file content (36 lines) | stat: -rw-r--r-- 725 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package(default_visibility = ["//visibility:public"])

cc_library(
    name = "model",
    srcs = [
        "model.cpp",
    ],
    hdrs = [
        "addresses.h",
        "model.h",
        "//:rp2350_a2_rom_end.h",
        "//:rp2350_a3_rom_end.h",
        "//:rp2350_a4_rom_end.h",
    ],
    includes = ["."],
    deps = [
        "//errors",
        "@pico-sdk//src/common/boot_uf2_headers",
        "@pico-sdk//src/common/boot_picoboot_headers",
    ],
)

filegroup(
    name = "rp2350_a2_rom_end_bin",
    srcs = ["rp2350_a2_rom_end.bin"],
)

filegroup(
    name = "rp2350_a3_rom_end_bin",
    srcs = ["rp2350_a3_rom_end.bin"],
)

filegroup(
    name = "rp2350_a4_rom_end_bin",
    srcs = ["rp2350_a4_rom_end.bin"],
)