summaryrefslogtreecommitdiff
path: root/tools/Android.bp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/Android.bp')
-rw-r--r--tools/Android.bp31
1 files changed, 11 insertions, 20 deletions
diff --git a/tools/Android.bp b/tools/Android.bp
index b7f5c1b08b..207a121848 100644
--- a/tools/Android.bp
+++ b/tools/Android.bp
@@ -37,6 +37,17 @@ soong_config_module_type_import {
],
}
+cc_binary {
+ name: "art_boot",
+ defaults: ["art_defaults"],
+ srcs: ["art_boot.cc"],
+ shared_libs: ["libbase"],
+ apex_available: [
+ "com.android.art",
+ "com.android.art.debug",
+ ],
+}
+
// Copy the art shell script to the host and target's bin directory
art_module_sh_binary {
name: "art-script",
@@ -97,23 +108,3 @@ sh_binary {
},
},
}
-
-python_binary_host {
- name: "art-run-test-checker",
- srcs: [
- "checker/**/*.py",
- ],
- main: "checker/checker.py",
- version: {
- py2: {
- enabled: false,
- },
- py3: {
- enabled: true,
- },
- },
- test_suites: [
- "general-tests",
- "mts-art",
- ],
-}