| Alex Light | b69d2d3 | 2018-02-21 13:37:17 -0800 | [diff] [blame] | 1 | // |
| 2 | // Copyright (C) 2018 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 | |
| 17 | python_binary_host { |
| Andreas Gampe | 0dc93b1 | 2019-05-15 10:30:22 -0700 | [diff] [blame] | 18 | name: "generate_operator_out", |
| 19 | srcs: [ |
| 20 | "generate_operator_out.py", |
| 21 | ], |
| 22 | version: { |
| 23 | py2: { |
| 24 | enabled: true, |
| 25 | }, |
| 26 | py3: { |
| 27 | enabled: false, |
| 28 | }, |
| Alex Light | 598807d | 2018-02-22 16:24:15 -0800 | [diff] [blame] | 29 | }, |
| Alex Light | b69d2d3 | 2018-02-21 13:37:17 -0800 | [diff] [blame] | 30 | } |
| Paul Duffin | 8e6bf10 | 2019-05-24 11:31:01 +0100 | [diff] [blame] | 31 | |
| 32 | // Copy the art shell script to the host and target's bin directory |
| 33 | sh_binary { |
| 34 | name: "art-script", |
| 35 | host_supported: true, |
| 36 | src: "art", |
| 37 | filename_from_src: true, |
| Nicolas Geoffray | ec64f20 | 2020-04-20 15:05:54 +0100 | [diff] [blame] | 38 | target: { |
| 39 | android: { |
| 40 | required: [ |
| 41 | "com.android.art.release", |
| 42 | ], |
| 43 | }, |
| 44 | host: { |
| 45 | required: [ |
| 46 | "dalvikvm", |
| 47 | "dex2oat", |
| 48 | ], |
| 49 | }, |
| Yo Chiang | e492f7e | 2020-08-07 04:22:18 +0000 | [diff] [blame] | 50 | darwin: { |
| 51 | enabled: false, |
| 52 | }, |
| Nicolas Geoffray | ec64f20 | 2020-04-20 15:05:54 +0100 | [diff] [blame] | 53 | }, |
| Paul Duffin | 8e6bf10 | 2019-05-24 11:31:01 +0100 | [diff] [blame] | 54 | } |
| Nicolas Geoffray | e84f53e | 2020-05-15 16:50:17 +0100 | [diff] [blame] | 55 | |
| 56 | sh_binary { |
| 57 | name: "dex2oat-script", |
| 58 | host_supported: true, |
| 59 | src: "dex2oat_wrapper", |
| 60 | filename_from_src: true, |
| 61 | target: { |
| 62 | android: { |
| 63 | required: [ |
| 64 | "com.android.art.release", |
| 65 | ], |
| 66 | }, |
| 67 | host: { |
| 68 | required: [ |
| 69 | "dex2oat", |
| 70 | ], |
| 71 | }, |
| Yo Chiang | e492f7e | 2020-08-07 04:22:18 +0000 | [diff] [blame] | 72 | darwin: { |
| 73 | enabled: false, |
| 74 | }, |
| Nicolas Geoffray | e84f53e | 2020-05-15 16:50:17 +0100 | [diff] [blame] | 75 | }, |
| 76 | } |
| Orion Hodson | 267832d | 2020-08-27 15:13:10 +0100 | [diff] [blame^] | 77 | |
| 78 | cc_prebuilt_binary { |
| 79 | name: "compile_bcp.sh", |
| 80 | host_supported: false, |
| 81 | srcs: ["compile_bcp.sh"], |
| 82 | apex_available: [ |
| 83 | "com.android.art.debug", |
| 84 | "com.android.art.release", |
| 85 | ], |
| 86 | } |