1004dcaf82
In supporting cc_prebuilt_binary building with Bazel, we need to enable Bazel to be able to introspect and build the check_elf_files.py tool, originally built via make Bug: 241415823 Test: b build '//build/make/tools:check_elf_file' Change-Id: I4eeae86f683c678809e84edc2fee88f9d2436f9f
27 lines
604 B
Python
27 lines
604 B
Python
py_library(
|
|
name = "event_log_tags",
|
|
srcs = ["event_log_tags.py"],
|
|
)
|
|
|
|
py_binary(
|
|
name = "java-event-log-tags",
|
|
srcs = ["java-event-log-tags.py"],
|
|
python_version = "PY3",
|
|
visibility = ["//visibility:public"],
|
|
deps = [":event_log_tags"],
|
|
)
|
|
|
|
py_binary(
|
|
name = "merge-event-log-tags",
|
|
srcs = ["merge-event-log-tags.py"],
|
|
python_version = "PY3",
|
|
visibility = ["//visibility:public"],
|
|
deps = [":event_log_tags"],
|
|
)
|
|
|
|
py_binary(
|
|
name = "check_elf_file",
|
|
srcs = ["check_elf_file.py"],
|
|
python_version = "PY3",
|
|
visibility = ["//visibility:public"],
|
|
)
|