Colin Cross | fe6064a | 2016-08-30 13:49:26 -0700 | [diff] [blame] | 1 | // |
| 2 | // Copyright (C) 2014 The Android Open Source Project |
| 3 | // |
| 4 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | // you may not use this file except in compliance with the License. |
| 6 | // You may obtain a copy of the License at |
| 7 | // |
| 8 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | // |
| 10 | // Unless required by applicable law or agreed to in writing, software |
| 11 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | // See the License for the specific language governing permissions and |
| 14 | // limitations under the License. |
| 15 | // |
| 16 | |
David Srbecky | 0adf4d8 | 2018-10-01 18:17:45 +0100 | [diff] [blame] | 17 | // This produces human-readable asm_defines.s with the embedded compile-time constants. |
Bob Badour | 9150de6 | 2021-02-26 03:22:24 -0800 | [diff] [blame] | 18 | package { |
| 19 | // See: http://go/android-license-faq |
| 20 | // A large-scale-change added 'default_applicable_licenses' to import |
| 21 | // all of the 'license_kinds' from "art_license" |
| 22 | // to get the below license kinds: |
| 23 | // SPDX-license-identifier-Apache-2.0 |
| 24 | default_applicable_licenses: ["art_license"], |
| 25 | } |
| 26 | |
David Srbecky | 0adf4d8 | 2018-10-01 18:17:45 +0100 | [diff] [blame] | 27 | cc_object { |
| 28 | name: "asm_defines.s", |
Colin Cross | fe6064a | 2016-08-30 13:49:26 -0700 | [diff] [blame] | 29 | host_supported: true, |
David Srbecky | 0adf4d8 | 2018-10-01 18:17:45 +0100 | [diff] [blame] | 30 | device_supported: true, |
Colin Cross | fe6064a | 2016-08-30 13:49:26 -0700 | [diff] [blame] | 31 | defaults: [ |
| 32 | "art_debug_defaults", |
| 33 | "art_defaults", |
| 34 | ], |
Paul Duffin | eafeeb2 | 2019-07-19 10:22:32 +0100 | [diff] [blame] | 35 | header_libs: [ |
| 36 | "art_libartbase_headers", // For base/bit_utils.h |
Orion Hodson | 00cb81d | 2020-04-03 06:47:07 +0100 | [diff] [blame] | 37 | "jni_headers", |
Paul Duffin | eafeeb2 | 2019-07-19 10:22:32 +0100 | [diff] [blame] | 38 | "libart_runtime_headers_ndk", |
| 39 | "libdexfile_all_headers", // For dex/modifiers.h |
David Sehr | 334b9d7 | 2018-02-12 18:27:56 -0800 | [diff] [blame] | 40 | ], |
Martin Stjernholm | cfea667 | 2020-07-16 03:36:43 +0100 | [diff] [blame] | 41 | target: { |
| 42 | android: { |
| 43 | header_libs: ["libc_headers"], // TODO(b/153662223): Clean this up. |
| 44 | }, |
| 45 | linux_bionic: { |
| 46 | header_libs: ["libc_headers"], // TODO(b/153662223): Clean this up. |
| 47 | }, |
| 48 | }, |
David Srbecky | 0adf4d8 | 2018-10-01 18:17:45 +0100 | [diff] [blame] | 49 | // Produce text file rather than binary. |
| 50 | cflags: ["-S"], |
| 51 | srcs: ["asm_defines.cc"], |
Jiyong Park | 7c2f69e | 2020-01-15 15:43:32 +0900 | [diff] [blame] | 52 | apex_available: [ |
Martin Stjernholm | 3e9abfc | 2020-10-09 22:17:51 +0100 | [diff] [blame] | 53 | "com.android.art", |
Jiyong Park | 7c2f69e | 2020-01-15 15:43:32 +0900 | [diff] [blame] | 54 | "com.android.art.debug", |
Jiyong Park | 7c2f69e | 2020-01-15 15:43:32 +0900 | [diff] [blame] | 55 | ], |
Colin Cross | fe6064a | 2016-08-30 13:49:26 -0700 | [diff] [blame] | 56 | } |
Igor Murashkin | 2bb70d3 | 2017-02-06 10:34:14 -0800 | [diff] [blame] | 57 | |
Martin Stjernholm | 6eb1783 | 2021-05-10 17:44:05 +0100 | [diff] [blame] | 58 | soong_config_module_type_import { |
| 59 | from: "art/build/SoongConfig.bp", |
| 60 | module_types: [ |
| 61 | "art_module_cc_genrule", |
| 62 | ], |
| 63 | } |
| 64 | |
David Srbecky | 0adf4d8 | 2018-10-01 18:17:45 +0100 | [diff] [blame] | 65 | // This extracts the compile-time constants from asm_defines.s and creates the header. |
Martin Stjernholm | 6eb1783 | 2021-05-10 17:44:05 +0100 | [diff] [blame] | 66 | art_module_cc_genrule { |
Dan Willemsen | 2ca2780 | 2017-09-27 14:57:43 -0700 | [diff] [blame] | 67 | name: "cpp-define-generator-asm-support", |
Martin Stjernholm | 6eb1783 | 2021-05-10 17:44:05 +0100 | [diff] [blame] | 68 | |
| 69 | // :asm_defines.s is only available when building ART from source, so do the |
| 70 | // same here. |
| 71 | // TODO(b/172480617): Clean up when sources are gone from the platform tree |
| 72 | // and we no longer need to support sources present when prebuilts are used. |
| 73 | enabled: false, |
| 74 | soong_config_variables: { |
| 75 | source_build: { |
| 76 | enabled: true, |
| 77 | }, |
| 78 | }, |
| 79 | |
David Srbecky | 0adf4d8 | 2018-10-01 18:17:45 +0100 | [diff] [blame] | 80 | host_supported: true, |
| 81 | device_supported: true, |
| 82 | srcs: [":asm_defines.s"], |
David Srbecky | 766e74f | 2018-10-02 17:12:24 +0100 | [diff] [blame] | 83 | out: ["asm_defines.h"], |
David Srbecky | 0adf4d8 | 2018-10-01 18:17:45 +0100 | [diff] [blame] | 84 | tool_files: ["make_header.py"], |
| 85 | cmd: "$(location make_header.py) \"$(in)\" > \"$(out)\"", |
Elliott Hughes | 221dfa6 | 2019-09-03 16:03:56 -0700 | [diff] [blame] | 86 | target: { |
| 87 | darwin: { |
| 88 | enabled: false, |
| 89 | }, |
Martin Stjernholm | 6eb1783 | 2021-05-10 17:44:05 +0100 | [diff] [blame] | 90 | windows: { |
| 91 | // When the module is enabled globally in the soong_config_variables |
| 92 | // stanza above, it gets enabled on windows too. Hence we need to |
| 93 | // disable it explicitly. |
| 94 | // TODO(b/172480617): Clean up with that. |
| 95 | enabled: false, |
| 96 | }, |
Elliott Hughes | 221dfa6 | 2019-09-03 16:03:56 -0700 | [diff] [blame] | 97 | }, |
Jiyong Park | 71f661c | 2020-04-28 18:20:43 +0900 | [diff] [blame] | 98 | |
| 99 | apex_available: [ |
Martin Stjernholm | 3e9abfc | 2020-10-09 22:17:51 +0100 | [diff] [blame] | 100 | "com.android.art", |
Jiyong Park | 71f661c | 2020-04-28 18:20:43 +0900 | [diff] [blame] | 101 | "com.android.art.debug", |
Jiyong Park | 71f661c | 2020-04-28 18:20:43 +0900 | [diff] [blame] | 102 | ], |
David Srbecky | 0adf4d8 | 2018-10-01 18:17:45 +0100 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | cc_library_headers { |
| 106 | name: "cpp-define-generator-definitions", |
| 107 | host_supported: true, |
| 108 | export_include_dirs: ["."], |
Jiyong Park | 71f661c | 2020-04-28 18:20:43 +0900 | [diff] [blame] | 109 | |
| 110 | apex_available: [ |
Martin Stjernholm | 3e9abfc | 2020-10-09 22:17:51 +0100 | [diff] [blame] | 111 | "com.android.art", |
Jiyong Park | 71f661c | 2020-04-28 18:20:43 +0900 | [diff] [blame] | 112 | "com.android.art.debug", |
Jiyong Park | 71f661c | 2020-04-28 18:20:43 +0900 | [diff] [blame] | 113 | ], |
Nicolas Geoffray | ec388c0 | 2021-03-03 22:09:06 +0000 | [diff] [blame] | 114 | min_sdk_version: "S", |
David Srbecky | 0adf4d8 | 2018-10-01 18:17:45 +0100 | [diff] [blame] | 115 | } |
| 116 | |
| 117 | python_binary_host { |
| 118 | name: "cpp-define-generator-test", |
| 119 | main: "make_header_test.py", |
| 120 | srcs: [ |
| 121 | "make_header.py", |
| 122 | "make_header_test.py", |
| 123 | ], |
| 124 | test_suites: ["general-tests"], |
Igor Murashkin | 2bb70d3 | 2017-02-06 10:34:14 -0800 | [diff] [blame] | 125 | } |