diff options
author | 2023-10-06 21:35:21 +0000 | |
---|---|---|
committer | 2023-10-09 18:07:39 +0000 | |
commit | 17a27f0c143bd3482ecbb0f516d7f117290b464d (patch) | |
tree | e41ba67b1294adf23f5c6d5fa696764fc5374534 /bp2build/conversion_test.go | |
parent | 69cf8a3221e8ced4f86d915bb4800a775a36c8ab (diff) |
Replace ndk_libs.bzl with an attr in cc_stub_suite
(This CL is a cleanup, and should be a no-op)
Currently we support three variations of cc api stubs.
1. publicapi stubs, i.e. ndk stubs (empty additional args to ndkstubgen)
2. module-libapi stubs that are also an ndk library (--systemapi --apex)
3. module-libapi stubs that are not an ndk library (--systemapi --apex
--no-ndk)
ndk_libs.bzl was used to differentiate between (2) and (3). This creates
an additional layer of indirection - users will need to modify this
external .bzl file if they would like to add a library to an ndk.
Replace this with an explicit atttibute in cc_stub_suite macro for better UX.
Test: go test ./bp2build
Test: b test //build/bazel/rules/cc:cc_stub_library_tests (added in
sibling CL)
Bug: 299501496
Change-Id: Idd3579e8013bae7a1740534f90d2767df5bac1a5
Diffstat (limited to 'bp2build/conversion_test.go')
-rw-r--r-- | bp2build/conversion_test.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/bp2build/conversion_test.go b/bp2build/conversion_test.go index 6b100772c..51675ce5e 100644 --- a/bp2build/conversion_test.go +++ b/bp2build/conversion_test.go @@ -107,10 +107,6 @@ func TestCreateBazelFiles_Bp2Build_CreatesDefaultFiles(t *testing.T) { }, { dir: "cc_toolchain", - basename: "ndk_libs.bzl", - }, - { - dir: "cc_toolchain", basename: "sanitizer_constants.bzl", }, { |