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, |
Martin Stjernholm | 9dca919 | 2021-10-28 03:01:13 +0100 | [diff] [blame] | 31 | defaults: ["art_debug_defaults"], |
Paul Duffin | eafeeb2 | 2019-07-19 10:22:32 +0100 | [diff] [blame] | 32 | header_libs: [ |
| 33 | "art_libartbase_headers", // For base/bit_utils.h |
Orion Hodson | 00cb81d | 2020-04-03 06:47:07 +0100 | [diff] [blame] | 34 | "jni_headers", |
Martin Stjernholm | dc7f139 | 2021-11-03 18:05:33 +0000 | [diff] [blame] | 35 | "libart_headers", |
Paul Duffin | eafeeb2 | 2019-07-19 10:22:32 +0100 | [diff] [blame] | 36 | "libdexfile_all_headers", // For dex/modifiers.h |
David Sehr | 334b9d7 | 2018-02-12 18:27:56 -0800 | [diff] [blame] | 37 | ], |
David Srbecky | 0adf4d8 | 2018-10-01 18:17:45 +0100 | [diff] [blame] | 38 | // Produce text file rather than binary. |
| 39 | cflags: ["-S"], |
| 40 | srcs: ["asm_defines.cc"], |
Jiyong Park | 7c2f69e | 2020-01-15 15:43:32 +0900 | [diff] [blame] | 41 | apex_available: [ |
Martin Stjernholm | 3e9abfc | 2020-10-09 22:17:51 +0100 | [diff] [blame] | 42 | "com.android.art", |
Jiyong Park | 7c2f69e | 2020-01-15 15:43:32 +0900 | [diff] [blame] | 43 | "com.android.art.debug", |
Jiyong Park | 7c2f69e | 2020-01-15 15:43:32 +0900 | [diff] [blame] | 44 | ], |
Colin Cross | fe6064a | 2016-08-30 13:49:26 -0700 | [diff] [blame] | 45 | } |
Igor Murashkin | 2bb70d3 | 2017-02-06 10:34:14 -0800 | [diff] [blame] | 46 | |
Martin Stjernholm | 1dc77ab | 2021-05-10 17:44:05 +0100 | [diff] [blame] | 47 | soong_config_module_type_import { |
| 48 | from: "art/build/SoongConfig.bp", |
| 49 | module_types: [ |
| 50 | "art_module_cc_genrule", |
| 51 | ], |
| 52 | } |
| 53 | |
David Srbecky | 0adf4d8 | 2018-10-01 18:17:45 +0100 | [diff] [blame] | 54 | // This extracts the compile-time constants from asm_defines.s and creates the header. |
Martin Stjernholm | 1dc77ab | 2021-05-10 17:44:05 +0100 | [diff] [blame] | 55 | art_module_cc_genrule { |
Dan Willemsen | 2ca2780 | 2017-09-27 14:57:43 -0700 | [diff] [blame] | 56 | name: "cpp-define-generator-asm-support", |
Martin Stjernholm | 1dc77ab | 2021-05-10 17:44:05 +0100 | [diff] [blame] | 57 | |
| 58 | // :asm_defines.s is only available when building ART from source, so do the |
| 59 | // same here. |
| 60 | // TODO(b/172480617): Clean up when sources are gone from the platform tree |
| 61 | // and we no longer need to support sources present when prebuilts are used. |
| 62 | enabled: false, |
| 63 | soong_config_variables: { |
| 64 | source_build: { |
| 65 | enabled: true, |
| 66 | }, |
| 67 | }, |
| 68 | |
David Srbecky | 0adf4d8 | 2018-10-01 18:17:45 +0100 | [diff] [blame] | 69 | host_supported: true, |
| 70 | device_supported: true, |
| 71 | srcs: [":asm_defines.s"], |
David Srbecky | 766e74f | 2018-10-02 17:12:24 +0100 | [diff] [blame] | 72 | out: ["asm_defines.h"], |
David Srbecky | 0adf4d8 | 2018-10-01 18:17:45 +0100 | [diff] [blame] | 73 | tool_files: ["make_header.py"], |
| 74 | cmd: "$(location make_header.py) \"$(in)\" > \"$(out)\"", |
Elliott Hughes | 221dfa6 | 2019-09-03 16:03:56 -0700 | [diff] [blame] | 75 | target: { |
| 76 | darwin: { |
| 77 | enabled: false, |
| 78 | }, |
Martin Stjernholm | 1dc77ab | 2021-05-10 17:44:05 +0100 | [diff] [blame] | 79 | windows: { |
| 80 | // When the module is enabled globally in the soong_config_variables |
| 81 | // stanza above, it gets enabled on windows too. Hence we need to |
| 82 | // disable it explicitly. |
| 83 | // TODO(b/172480617): Clean up with that. |
| 84 | enabled: false, |
| 85 | }, |
Elliott Hughes | 221dfa6 | 2019-09-03 16:03:56 -0700 | [diff] [blame] | 86 | }, |
Jiyong Park | 71f661c | 2020-04-28 18:20:43 +0900 | [diff] [blame] | 87 | |
| 88 | apex_available: [ |
Martin Stjernholm | 3e9abfc | 2020-10-09 22:17:51 +0100 | [diff] [blame] | 89 | "com.android.art", |
Jiyong Park | 71f661c | 2020-04-28 18:20:43 +0900 | [diff] [blame] | 90 | "com.android.art.debug", |
Jiyong Park | 71f661c | 2020-04-28 18:20:43 +0900 | [diff] [blame] | 91 | ], |
David Srbecky | 0adf4d8 | 2018-10-01 18:17:45 +0100 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | cc_library_headers { |
| 95 | name: "cpp-define-generator-definitions", |
Martin Stjernholm | e10abe7 | 2021-10-28 03:49:55 +0100 | [diff] [blame] | 96 | defaults: ["art_defaults"], |
David Srbecky | 0adf4d8 | 2018-10-01 18:17:45 +0100 | [diff] [blame] | 97 | host_supported: true, |
| 98 | export_include_dirs: ["."], |
Jiyong Park | 71f661c | 2020-04-28 18:20:43 +0900 | [diff] [blame] | 99 | |
| 100 | apex_available: [ |
Martin Stjernholm | 3e9abfc | 2020-10-09 22:17:51 +0100 | [diff] [blame] | 101 | "com.android.art", |
Jiyong Park | 71f661c | 2020-04-28 18:20:43 +0900 | [diff] [blame] | 102 | "com.android.art.debug", |
Jiyong Park | 71f661c | 2020-04-28 18:20:43 +0900 | [diff] [blame] | 103 | ], |
David Srbecky | 0adf4d8 | 2018-10-01 18:17:45 +0100 | [diff] [blame] | 104 | } |
| 105 | |
| 106 | python_binary_host { |
| 107 | name: "cpp-define-generator-test", |
| 108 | main: "make_header_test.py", |
| 109 | srcs: [ |
| 110 | "make_header.py", |
| 111 | "make_header_test.py", |
| 112 | ], |
| 113 | test_suites: ["general-tests"], |
Igor Murashkin | 2bb70d3 | 2017-02-06 10:34:14 -0800 | [diff] [blame] | 114 | } |