Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bab29d4d authored by Cole Faust's avatar Cole Faust
Browse files

Remove BUILD.bazel files

Bug: 315353489
Test: Presubmits
Change-Id: I43f60ff09e3e1620d6869b60d9c92f3b98018362
parent 1f07601d
Loading
Loading
Loading
Loading

core/BUILD.bazel

deleted100644 → 0
+0 −28
Original line number Diff line number Diff line
# Copyright (C) 2023 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License

# Export tradefed templates for tests.
exports_files(
    glob(["*.xml"]),
)

# Export proguard flag files for r8.
filegroup(
    name = "global_proguard_flags",
    srcs = [
        "proguard.flags",
        "proguard_basic_keeps.flags",
    ],
    visibility = ["//visibility:public"],
)
+0 −8
Original line number Diff line number Diff line
filegroup(
    name = "android_certificate_directory",
    srcs = glob([
        "*.pk8",
        "*.pem",
    ]),
    visibility = ["//visibility:public"],
)

tools/BUILD.bazel

deleted100644 → 0
+0 −35
Original line number Diff line number Diff line
py_library(
    name = "event_log_tags",
    srcs = ["event_log_tags.py"],
    imports = ["."],
)

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"],
)

py_binary(
    name = "auto_gen_test_config",
    srcs = ["auto_gen_test_config.py"],
    python_version = "PY3",
    visibility = ["//visibility:public"],
)