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. |
| 18 | cc_object { |
| 19 | name: "asm_defines.s", |
Colin Cross | fe6064a | 2016-08-30 13:49:26 -0700 | [diff] [blame] | 20 | host_supported: true, |
David Srbecky | 0adf4d8 | 2018-10-01 18:17:45 +0100 | [diff] [blame] | 21 | device_supported: true, |
Colin Cross | fe6064a | 2016-08-30 13:49:26 -0700 | [diff] [blame] | 22 | defaults: [ |
| 23 | "art_debug_defaults", |
| 24 | "art_defaults", |
| 25 | ], |
Paul Duffin | eafeeb2 | 2019-07-19 10:22:32 +0100 | [diff] [blame] | 26 | header_libs: [ |
| 27 | "art_libartbase_headers", // For base/bit_utils.h |
| 28 | "libart_runtime_headers_ndk", |
| 29 | "libdexfile_all_headers", // For dex/modifiers.h |
David Sehr | 334b9d7 | 2018-02-12 18:27:56 -0800 | [diff] [blame] | 30 | ], |
David Srbecky | 0adf4d8 | 2018-10-01 18:17:45 +0100 | [diff] [blame] | 31 | // Produce text file rather than binary. |
| 32 | cflags: ["-S"], |
| 33 | srcs: ["asm_defines.cc"], |
Jiyong Park | 7c2f69e | 2020-01-15 15:43:32 +0900 | [diff] [blame^] | 34 | apex_available: [ |
| 35 | "com.android.art.debug", |
| 36 | "com.android.art.release", |
| 37 | ], |
Colin Cross | fe6064a | 2016-08-30 13:49:26 -0700 | [diff] [blame] | 38 | } |
Igor Murashkin | 2bb70d3 | 2017-02-06 10:34:14 -0800 | [diff] [blame] | 39 | |
David Srbecky | 0adf4d8 | 2018-10-01 18:17:45 +0100 | [diff] [blame] | 40 | // This extracts the compile-time constants from asm_defines.s and creates the header. |
| 41 | cc_genrule { |
Dan Willemsen | 2ca2780 | 2017-09-27 14:57:43 -0700 | [diff] [blame] | 42 | name: "cpp-define-generator-asm-support", |
David Srbecky | 0adf4d8 | 2018-10-01 18:17:45 +0100 | [diff] [blame] | 43 | host_supported: true, |
| 44 | device_supported: true, |
| 45 | srcs: [":asm_defines.s"], |
David Srbecky | 766e74f | 2018-10-02 17:12:24 +0100 | [diff] [blame] | 46 | out: ["asm_defines.h"], |
David Srbecky | 0adf4d8 | 2018-10-01 18:17:45 +0100 | [diff] [blame] | 47 | tool_files: ["make_header.py"], |
| 48 | cmd: "$(location make_header.py) \"$(in)\" > \"$(out)\"", |
Elliott Hughes | 221dfa6 | 2019-09-03 16:03:56 -0700 | [diff] [blame] | 49 | target: { |
| 50 | darwin: { |
| 51 | enabled: false, |
| 52 | }, |
| 53 | }, |
David Srbecky | 0adf4d8 | 2018-10-01 18:17:45 +0100 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | cc_library_headers { |
| 57 | name: "cpp-define-generator-definitions", |
| 58 | host_supported: true, |
| 59 | export_include_dirs: ["."], |
| 60 | } |
| 61 | |
| 62 | python_binary_host { |
| 63 | name: "cpp-define-generator-test", |
| 64 | main: "make_header_test.py", |
| 65 | srcs: [ |
| 66 | "make_header.py", |
| 67 | "make_header_test.py", |
| 68 | ], |
| 69 | test_suites: ["general-tests"], |
Igor Murashkin | 2bb70d3 | 2017-02-06 10:34:14 -0800 | [diff] [blame] | 70 | } |