OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//build/config/android/rules.gni") | 5 import("//build/config/android/rules.gni") |
6 | 6 |
7 if (enable_java_templates) { | 7 if (enable_java_templates) { |
8 import("//third_party/ijar/ijar.gni") | 8 import("//third_party/ijar/ijar.gni") |
9 | 9 |
10 sun_tools_jar_path = "$root_gen_dir/sun_tools_jar/tools.jar" | 10 sun_tools_jar_path = "$root_gen_dir/sun_tools_jar/tools.jar" |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 "test_wrapper/logdog_wrapper.py", | 114 "test_wrapper/logdog_wrapper.py", |
115 "//third_party/android_tools/sdk/build-tools/24.0.2/aapt", | 115 "//third_party/android_tools/sdk/build-tools/24.0.2/aapt", |
116 "//third_party/android_tools/sdk/build-tools/24.0.2/dexdump", | 116 "//third_party/android_tools/sdk/build-tools/24.0.2/dexdump", |
117 "//third_party/android_tools/sdk/build-tools/24.0.2/lib64/libc++.so", | 117 "//third_party/android_tools/sdk/build-tools/24.0.2/lib64/libc++.so", |
118 "//third_party/android_tools/sdk/build-tools/24.0.2/split-select", | 118 "//third_party/android_tools/sdk/build-tools/24.0.2/split-select", |
119 "//third_party/android_tools/sdk/platform-tools/adb", | 119 "//third_party/android_tools/sdk/platform-tools/adb", |
120 "//third_party/catapult/third_party/gsutil/", | 120 "//third_party/catapult/third_party/gsutil/", |
121 "//third_party/catapult/devil/devil/devil_dependencies.json", | 121 "//third_party/catapult/devil/devil/devil_dependencies.json", |
122 "//third_party/proguard/lib/proguard.jar", | 122 "//third_party/proguard/lib/proguard.jar", |
123 ] | 123 ] |
| 124 data_deps = [ |
| 125 "//tools/swarming_client:isolate_py", |
| 126 ] |
124 } | 127 } |
125 | 128 |
126 # Create wrapper scripts in out/bin that takes care of setting the | 129 # Create wrapper scripts in out/bin that takes care of setting the |
127 # --output-directory. | 130 # --output-directory. |
128 _scripts_to_wrap = [ | 131 _scripts_to_wrap = [ |
129 # TODO(agrieve): Once GYP is no more, delete the checked-in adb_gdb_* scripts | 132 # TODO(agrieve): Once GYP is no more, delete the checked-in adb_gdb_* scripts |
130 # and generated a script for each android_apk() that has a native library. | 133 # and generated a script for each android_apk() that has a native library. |
131 "adb_gdb_android_webview_shell", | 134 "adb_gdb_android_webview_shell", |
132 "adb_gdb_blimp_client", | 135 "adb_gdb_blimp_client", |
133 "adb_gdb_chrome_public", | 136 "adb_gdb_chrome_public", |
134 "adb_gdb_content_shell", | 137 "adb_gdb_content_shell", |
135 "adb_gdb_cronet_sample", | 138 "adb_gdb_cronet_sample", |
136 "adb_gdb_mojo_shell", | 139 "adb_gdb_mojo_shell", |
137 "asan_symbolize.py", | 140 "asan_symbolize.py", |
138 "tombstones.py", | 141 "tombstones.py", |
139 ] | 142 ] |
140 | 143 |
141 _wrapper_targets = [] | 144 _wrapper_targets = [] |
142 foreach(script, _scripts_to_wrap) { | 145 foreach(script, _scripts_to_wrap) { |
143 _target_name = get_path_info(script, "name") + "_wrapper" | 146 _target_name = get_path_info(script, "name") + "_wrapper" |
144 _wrapper_targets += [ ":$_target_name" ] | 147 _wrapper_targets += [ ":$_target_name" ] |
145 wrapper_script(_target_name) { | 148 wrapper_script(_target_name) { |
146 target = script | 149 target = script |
147 } | 150 } |
148 } | 151 } |
149 | 152 |
150 group("wrapper_scripts") { | 153 group("wrapper_scripts") { |
151 deps = _wrapper_targets | 154 deps = _wrapper_targets |
152 } | 155 } |
OLD | NEW |