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 | ], |
David Sehr | 334b9d7 | 2018-02-12 18:27:56 -0800 | [diff] [blame] | 26 | include_dirs: [ |
David Sehr | 67bf42e | 2018-02-26 16:43:04 -0800 | [diff] [blame] | 27 | "art/libartbase", |
David Sehr | 334b9d7 | 2018-02-12 18:27:56 -0800 | [diff] [blame] | 28 | "art/libdexfile", |
David Sehr | 1f01016 | 2018-05-15 08:59:32 -0700 | [diff] [blame] | 29 | "art/libartbase", |
David Sehr | 334b9d7 | 2018-02-12 18:27:56 -0800 | [diff] [blame] | 30 | "art/runtime", |
David Srbecky | 0adf4d8 | 2018-10-01 18:17:45 +0100 | [diff] [blame^] | 31 | "system/core/base/include", |
David Sehr | 334b9d7 | 2018-02-12 18:27:56 -0800 | [diff] [blame] | 32 | ], |
David Srbecky | 0adf4d8 | 2018-10-01 18:17:45 +0100 | [diff] [blame^] | 33 | // Produce text file rather than binary. |
| 34 | cflags: ["-S"], |
| 35 | srcs: ["asm_defines.cc"], |
Colin Cross | fe6064a | 2016-08-30 13:49:26 -0700 | [diff] [blame] | 36 | } |
Igor Murashkin | 2bb70d3 | 2017-02-06 10:34:14 -0800 | [diff] [blame] | 37 | |
David Srbecky | 0adf4d8 | 2018-10-01 18:17:45 +0100 | [diff] [blame^] | 38 | // This extracts the compile-time constants from asm_defines.s and creates the header. |
| 39 | cc_genrule { |
Dan Willemsen | 2ca2780 | 2017-09-27 14:57:43 -0700 | [diff] [blame] | 40 | name: "cpp-define-generator-asm-support", |
David Srbecky | 0adf4d8 | 2018-10-01 18:17:45 +0100 | [diff] [blame^] | 41 | host_supported: true, |
| 42 | device_supported: true, |
| 43 | srcs: [":asm_defines.s"], |
Dan Willemsen | 2ca2780 | 2017-09-27 14:57:43 -0700 | [diff] [blame] | 44 | out: ["asm_support_gen.h"], |
David Srbecky | 0adf4d8 | 2018-10-01 18:17:45 +0100 | [diff] [blame^] | 45 | tool_files: ["make_header.py"], |
| 46 | cmd: "$(location make_header.py) \"$(in)\" > \"$(out)\"", |
| 47 | } |
| 48 | |
| 49 | cc_library_headers { |
| 50 | name: "cpp-define-generator-definitions", |
| 51 | host_supported: true, |
| 52 | export_include_dirs: ["."], |
| 53 | } |
| 54 | |
| 55 | python_binary_host { |
| 56 | name: "cpp-define-generator-test", |
| 57 | main: "make_header_test.py", |
| 58 | srcs: [ |
| 59 | "make_header.py", |
| 60 | "make_header_test.py", |
| 61 | ], |
| 62 | test_suites: ["general-tests"], |
Igor Murashkin | 2bb70d3 | 2017-02-06 10:34:14 -0800 | [diff] [blame] | 63 | } |