blob: 7c5004735e1c44ed27af222381c7afb9dda9d906 [file] [log] [blame]
Bob Badour02040de2021-02-03 18:08:28 -08001package {
2 default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
Dan Willemsen377737a2016-08-15 15:02:23 -07005subdirs = [
6 "androidmk",
Jeff Gastonaff66e52017-06-19 15:39:54 -07007 "bpfix",
Dan Willemsen377737a2016-08-15 15:02:23 -07008 "cmd/*",
Jeff Gastonf1fd45e2017-08-09 18:25:28 -07009 "fs",
10 "finder",
Jeff Gaston01547b22017-08-21 20:13:28 -070011 "jar",
Jeff Gaston11b5c512017-10-12 12:19:14 -070012 "zip",
Dan Willemsen377737a2016-08-15 15:02:23 -070013 "third_party/zip",
Dan Willemsen1e704462016-08-21 15:17:17 -070014 "ui/*",
Dan Willemsen377737a2016-08-15 15:02:23 -070015]
Colin Cross68f55102015-03-25 14:43:57 -070016
17bootstrap_go_package {
Colin Cross463a90e2015-06-17 14:20:06 -070018 name: "soong",
19 pkgPath: "android/soong",
20 deps: [
21 "blueprint",
22 ],
23 srcs: [
24 "doc.go",
Colin Cross463a90e2015-06-17 14:20:06 -070025 ],
26}
27
Colin Cross80031312015-03-14 14:28:22 -070028//
Dan Willemsen00fcbde2016-11-17 00:25:59 -080029// Defaults to enable various configurations of host bionic
30//
31
32cc_defaults {
33 name: "linux_bionic_supported",
34 host_supported: true,
35 target: {
36 host: {
37 enabled: false,
38 },
39 linux_bionic: {
40 enabled: true,
41 },
42 },
43}
44
45//
Colin Cross80031312015-03-14 14:28:22 -070046// C static libraries extracted from the gcc toolchain
47//
48
Jiyong Parkd773eb32017-07-03 13:18:12 +090049kernel_headers {
50 name: "device_kernel_headers",
51 vendor: true,
Hridya Valsarajud61df502018-08-21 15:51:20 -070052 recovery_available: true,
Jiyong Parkd773eb32017-07-03 13:18:12 +090053}
Dan Willemsenc77a0b32017-09-18 23:19:12 -070054
55cc_genrule {
56 name: "host_bionic_linker_asm",
57 host_supported: true,
58 device_supported: false,
59 target: {
60 linux_bionic: {
61 enabled: true,
62 },
Dan Willemsen9d6c6722017-10-02 10:41:07 -070063 linux_glibc: {
Dan Willemsenc77a0b32017-09-18 23:19:12 -070064 enabled: false,
65 },
66 darwin: {
67 enabled: false,
68 },
69 },
70 tools: ["extract_linker"],
71 cmd: "$(location) -s $(out) $(in)",
72 srcs: [":linker"],
73 out: ["linker.s"],
74}
75
76cc_genrule {
Colin Cross9cfe6112021-06-11 18:02:22 -070077 name: "host_bionic_linker_script",
Dan Willemsenc77a0b32017-09-18 23:19:12 -070078 host_supported: true,
79 device_supported: false,
80 target: {
81 linux_bionic: {
82 enabled: true,
83 },
Dan Willemsen9d6c6722017-10-02 10:41:07 -070084 linux_glibc: {
Dan Willemsenc77a0b32017-09-18 23:19:12 -070085 enabled: false,
86 },
87 darwin: {
88 enabled: false,
89 },
90 },
91 tools: ["extract_linker"],
Colin Cross9cfe6112021-06-11 18:02:22 -070092 cmd: "$(location) -T $(out) $(in)",
Dan Willemsenc77a0b32017-09-18 23:19:12 -070093 srcs: [":linker"],
Colin Cross9cfe6112021-06-11 18:02:22 -070094 out: ["linker.script"],
Dan Willemsenc77a0b32017-09-18 23:19:12 -070095}
Paul Duffin1ab61862021-01-20 17:44:53 +000096
97// Instantiate the dex_bootjars singleton module.
98dex_bootjars {
99 name: "dex_bootjars",
100}
Pirama Arumuga Nainar2558ce32021-06-24 15:59:38 -0700101
102// Pseudo-test that's run on checkbuilds to ensure that get_clang_version can
103// parse cc/config/global.go.
104genrule {
105 name: "get_clang_version_test",
106 cmd: "$(location get_clang_version) > $(out)",
107 tools: ["get_clang_version"],
108 srcs: ["cc/config/global.go"],
109 out: ["clang-prebuilts-version.txt"],
110}
Jiakai Zhang0a0a2fb2021-09-30 09:38:19 +0000111
112dexpreopt_systemserver_check {
113 name: "dexpreopt_systemserver_check",
114}