Commit Graph

47223 Commits

Author SHA1 Message Date
Keyi Gui
23b9e124ee Merge "Update droidstubs to support putting action inputs/outputs into the module-graph.json." am: f4bf09feba
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1940894

Change-Id: I1bc52c298cf5cd6dc13198559c6358df9d2648cf
2022-01-11 03:43:05 +00:00
Treehugger Robot
dafb404bd6 Merge "Convert math functions" am: 4cfd37e617
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1940098

Change-Id: I89bbd6e31523468d4f8bfb9bc847c59bb7434a52
2022-01-11 03:42:33 +00:00
Treehugger Robot
4d8ab7d1cc Merge "Make include_top comments only apply to the next statement" am: 03a0679529
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1940099

Change-Id: Ife489d526319269520ebd3b9d93e3f079c4ed2b2
2022-01-11 03:42:03 +00:00
Keyi Gui
f4bf09feba Merge "Update droidstubs to support putting action inputs/outputs into the module-graph.json." 2022-01-11 03:33:01 +00:00
Treehugger Robot
4cfd37e617 Merge "Convert math functions" 2022-01-11 03:28:01 +00:00
Treehugger Robot
03a0679529 Merge "Make include_top comments only apply to the next statement" 2022-01-11 03:11:51 +00:00
Pirama Arumuga Nainar
74eb07ae42 Merge "Enable memory-mapped coverage instrumentation" am: 6609484961
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1729633

Change-Id: I26d495298c4273e8000e17f70ad6d3537a680b48
2022-01-10 22:54:34 +00:00
Pirama Arumuga Nainar
6609484961 Merge "Enable memory-mapped coverage instrumentation" 2022-01-10 22:36:57 +00:00
Sam Delmerico
a3b597cacb Merge "Convert javacflags -> javacopts for java_binary_host" am: 88a1b9da85
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1940313

Change-Id: I938ec7351032154c7a8d60e7f4d42fac6678a44e
2022-01-10 21:11:15 +00:00
Sam Delmerico
88a1b9da85 Merge "Convert javacflags -> javacopts for java_binary_host" 2022-01-10 20:53:39 +00:00
Keyi
fe310a9305 Update droidstubs to support putting action inputs/outputs into the module-graph.json.
Test: local test

Change-Id: I6ce657f2ad53c261bcbdd317c266cf179a0cc6e9
2022-01-10 21:28:37 +08:00
Inseob Kim
c24e740cd0 Merge "Revert^3 "Add seapp_contexts to allowlist of makefile goal"" am: 865d5e6c9d
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1934941

Change-Id: I29055590f892e18792f9fbcbfe05abf162a80d73
2022-01-10 11:30:08 +00:00
Inseob Kim
865d5e6c9d Merge "Revert^3 "Add seapp_contexts to allowlist of makefile goal"" 2022-01-10 11:15:28 +00:00
Treehugger Robot
04c5dcf22a Merge "Use Module.GetProperties() instead of ModuleBase.generalProperties" am: 25656c401b
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1937381

Change-Id: I446089054ac47c0d58048e82be1cc1032ac9d36c
2022-01-10 09:06:29 +00:00
Treehugger Robot
25656c401b Merge "Use Module.GetProperties() instead of ModuleBase.generalProperties" 2022-01-10 08:49:17 +00:00
Treehugger Robot
44e4c47c47 Merge "Add sepolicy compat versions to soong config" am: bac9e97c50
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1940897

Change-Id: I9739ec8516ba5e1e727e3f8ee6fc1404b02b37ff
2022-01-10 02:30:04 +00:00
Treehugger Robot
bac9e97c50 Merge "Add sepolicy compat versions to soong config" 2022-01-10 02:09:23 +00:00
Usta
851a3271ce Use Module.GetProperties() instead of ModuleBase.generalProperties
ModuleBase.generalProperties served the pupose of being a subset
of ModuleBase.customizableProperties. But now with the removal of
the latter, the former is simply a redirection to Module.GetProperties()

Bug: 206961391
Test: m nothing and diff the ninja files
Change-Id: I6dd8b7ba74eb5e7ffb61029b0f9129eec2ccfdaf
2022-01-08 03:09:52 +00:00
Treehugger Robot
c6d1139f66 Merge "Fix format" am: e508f6a50b
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1940896

Change-Id: I65c3a8faa29ac9750ff768aadb1c55351c5c8917
2022-01-08 02:47:08 +00:00
Treehugger Robot
e508f6a50b Merge "Fix format" 2022-01-08 02:20:02 +00:00
Treehugger Robot
012bdc1ff6 Merge "bp2build: convert host & prebuilt header libraries" am: 77d93ba871
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1927620

Change-Id: I1f97e74f48db7d15dbd32fed36e2448ba2cf1c2e
2022-01-08 01:20:28 +00:00
Treehugger Robot
77d93ba871 Merge "bp2build: convert host & prebuilt header libraries" 2022-01-08 00:55:32 +00:00
Cole Faust
6c934f6341 Make include_top comments only apply to the next statement
Previously adding an include_top comment would make it apply
for the rest of the file. This was confusing behavior, and
could also cause extra roots to be searched in a situation
like the following:

\#RBC# include_top foo
include $(VAR)/file.mk
\#RBC# include_top bar
include $(VAR)/file.mk

Here the second include would have file.mk from both the foo
and bar directories in its _entry dictionary.

Bug: 213508006
Test: go test
Change-Id: If3430594759bee1390255400fe29b43d77f7b6a6
2022-01-07 15:09:16 -08:00
Cole Faust
b1103e2578 Convert math functions
Converts the following functions from build/make/common/math.mk:
 - math_max
 - math_min
 - math_gt_or_eq
 - math_gt
 - math_lt

Fixes: 213497955
Test: go test
Change-Id: I8c4e8fee321f03b813428fa10038fa8f06188cef
2022-01-07 14:59:55 -08:00
Inseob Kim
843f66461a Add sepolicy compat versions to soong config
Bug: 33691272
Test: build
Change-Id: If90f25540e8fd46e5c76e2a59015d46dd020c431
2022-01-07 19:44:16 +09:00
Inseob Kim
f5ed300dfc Fix format
Test: gofmt
Change-Id: Ib88fea484cb8b71ae940fe8c21b2c687eba2d019
2022-01-07 19:44:11 +09:00
Jiyong Park
f6d53e9586 Merge "ramdisk_module and dtb_prebuild properties are optional" am: fe306aba98
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1934956

Change-Id: I9991082a01a0c5807382d9eb027ddabc8a4d827f
2022-01-07 00:03:19 +00:00
Jiyong Park
fe306aba98 Merge "ramdisk_module and dtb_prebuild properties are optional" 2022-01-06 23:45:45 +00:00
Sam Delmerico
4e27229b61 Convert javacflags -> javacopts for java_binary_host
This has already been done for java_library modules, we need to add
similar support for java_binary_host.

Bug: 213456294
Test: go test ./bp2build
Change-Id: Idf7b631f3afe9f59e50f9e45bcbdc29fb5923cc6
2022-01-06 21:00:46 +00:00
Treehugger Robot
32c14d4177 Merge "Rename updatable-library to apex-library" am: fe74791982
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1938477

Change-Id: I6381254e312ee6064711f64aaf9b96575795d4cc
2022-01-06 18:57:46 +00:00
Treehugger Robot
fe74791982 Merge "Rename updatable-library to apex-library" 2022-01-06 18:41:10 +00:00
Yi Kong
60458f13b4 Merge "Remove mention of libhidlbase_pgo" am: 319eaaa9f5
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1933094

Change-Id: I7ff770c317abd72e10bc8a11b46fe04970fa609c
2022-01-06 17:54:41 +00:00
Yi Kong
319eaaa9f5 Merge "Remove mention of libhidlbase_pgo" 2022-01-06 17:42:59 +00:00
Muhammad Haseeb Ahmad
9a03218fec Merge "Add java_fuzz module to build java fuzzers" am: b5f43ac373
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1935617

Change-Id: Iabdfc5abdcff21614675e895b2f97766cbb69f91
2022-01-06 16:28:31 +00:00
Muhammad Haseeb Ahmad
b5f43ac373 Merge "Add java_fuzz module to build java fuzzers" 2022-01-06 16:08:46 +00:00
Pedro Loureiro
196d3e6b6b Rename updatable-library to apex-library
Mostly for consistency with the names used in related changes.

Test: m nothing

Bug: 191978330
Change-Id: I34637986ead1c671bcc649891aceb3fe0f44b52a
2022-01-06 10:33:42 +00:00
Jiyong Park
393ebfc85c ramdisk_module and dtb_prebuild properties are optional
The two properties are now optional, so that we can split boot.img into
boot.img that doesn't have ramdisk and init_boot.img that has only the
ramdisk.

Bug: N/A
Test: m com.android.virt
Change-Id: I5dc8b140893dfbcf69a8b5c099d23b9216217b53
2022-01-06 14:28:53 +09:00
Treehugger Robot
f04f3107f9 Merge "Update clang version to clang-r437112b" am: 81e3ef8485
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1937000

Change-Id: I2b322785387244af2fa953284abec1373b8af2bd
2022-01-06 03:25:17 +00:00
Treehugger Robot
81e3ef8485 Merge "Update clang version to clang-r437112b" 2022-01-06 03:10:04 +00:00
Muhammad Haseeb Ahmad
aa1d0cf775 Add java_fuzz module to build java fuzzers
This change adds a new module to soong to be able to build Java fuzz
targets be able to run using Jazzer. Jazzer is an open source fuzzing engine
supported by OSS-Fuzz.

Bug: 211671266
Test: go test -run TestJavaFuzz
Change-Id: Id7c346694f5986f6e15210c359fd533fbb7001eb
2022-01-06 02:17:34 +00:00
Chih-Hung Hsieh
5140a042e1 Update clang version to clang-r437112b
Bug: 201432564
Test: make
Change-Id: I77bb074ed8dee7cad63d3b3765d9a2c3bc1b8aae
2022-01-05 16:44:51 -08:00
Usta Shrestha
1df75fdde5 Merge "Remove customizableProperties from android.ModuleBase" am: 9eab2ef9a4
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1929304

Change-Id: Ifa05c4b9944c418a41d89cacaea9da992ed7bf9c
2022-01-05 22:51:19 +00:00
Usta Shrestha
9eab2ef9a4 Merge "Remove customizableProperties from android.ModuleBase" 2022-01-05 22:33:12 +00:00
Treehugger Robot
8aeed43f5a Merge "rust: Register rustdoc with checkbuild" am: 9b3b15c382
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1918941

Change-Id: Iebf4c62932d8758a15850c28192d6d4d53aacc49
2022-01-05 22:10:08 +00:00
Chih-hung Hsieh
b74e1052c1 Merge "Switch to clang-r437112b" am: 5bb16c37d6
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1927344

Change-Id: Icf2c5783a1ed646a41176e35c7a0c4bc05659c9a
2022-01-05 22:09:05 +00:00
Treehugger Robot
9b3b15c382 Merge "rust: Register rustdoc with checkbuild" 2022-01-05 21:54:40 +00:00
Chih-hung Hsieh
5bb16c37d6 Merge "Switch to clang-r437112b" 2022-01-05 21:52:27 +00:00
Michael Rosenfeld
e773e9743f Merge "Extract assets from AAR imports and their dependencies." am: 3babe3f6b6
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1931927

Change-Id: I47536b99865c69095c85d6dea873d3750eee7836
2022-01-05 20:16:59 +00:00
Michael Rosenfeld
3babe3f6b6 Merge "Extract assets from AAR imports and their dependencies." 2022-01-05 20:03:07 +00:00
Treehugger Robot
44cc70f646 Merge "Refactor knownFunctions" am: c531f63b63
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1927627

Change-Id: Ie746a7c424b60593c8e34b072d78c8ebcb74c49c
2022-01-05 19:01:04 +00:00