diff options
author | 2023-12-07 12:29:54 -0800 | |
---|---|---|
committer | 2023-12-11 23:12:44 +0000 | |
commit | 4bee068181f19c25edfc8719ed88ffd58aba7a6f (patch) | |
tree | f24d99a44a480f374c507fb9be2baa6a683d2384 /build/art.go | |
parent | bcf705056d1ec0ed009031466ef3a740a29b12e3 (diff) |
Remove bp2build in art/
Bug: 315353489
Test: m blueprint_tests
Change-Id: Ieaf3c87b7a5c09a31b7bc1935a835c5392a675b6
Diffstat (limited to 'build/art.go')
-rw-r--r-- | build/art.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/build/art.go b/build/art.go index 0ce15f52a3..34e3c159e3 100644 --- a/build/art.go +++ b/build/art.go @@ -103,7 +103,7 @@ func globalFlags(ctx android.LoadHookContext) ([]string, []string) { "-DART_STACK_OVERFLOW_GAP_x86_64=8192") } - if (ctx.Config().NoBionicPageSizeMacro()) { + if ctx.Config().NoBionicPageSizeMacro() { cflags = append(cflags, "-DART_PAGE_SIZE_AGNOSTIC=1") } @@ -390,8 +390,7 @@ func artBinary() android.Module { } func artTest() android.Module { - // Disable bp2build. - module := cc.NewTest(android.HostAndDeviceSupported, false /* bazelable */).Init() + module := cc.NewTest(android.HostAndDeviceSupported).Init() installCodegenCustomizer(module, binary) |