| 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 import("//third_party/ijar/ijar.gni") | 6 import("//third_party/ijar/ijar.gni") |
| 7 | 7 |
| 8 sun_tools_jar_path = "$root_gen_dir/sun_tools_jar/tools.jar" | 8 sun_tools_jar_path = "$root_gen_dir/sun_tools_jar/tools.jar" |
| 9 | 9 |
| 10 # Create or update the API versions cache if necessary by running a | 10 # Create or update the API versions cache if necessary by running a |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 data = sources + [ | 94 data = sources + [ |
| 95 "devil_chromium.json", | 95 "devil_chromium.json", |
| 96 "pylib/gtest/filter/", | 96 "pylib/gtest/filter/", |
| 97 "//third_party/android_tools/sdk/build-tools/23.0.1/aapt", | 97 "//third_party/android_tools/sdk/build-tools/23.0.1/aapt", |
| 98 "//third_party/android_tools/sdk/build-tools/23.0.1/dexdump", | 98 "//third_party/android_tools/sdk/build-tools/23.0.1/dexdump", |
| 99 "//third_party/android_tools/sdk/build-tools/23.0.1/lib/libc++.so", | 99 "//third_party/android_tools/sdk/build-tools/23.0.1/lib/libc++.so", |
| 100 "//third_party/android_tools/sdk/build-tools/23.0.1/split-select", | 100 "//third_party/android_tools/sdk/build-tools/23.0.1/split-select", |
| 101 "//third_party/android_tools/sdk/platform-tools/adb", | 101 "//third_party/android_tools/sdk/platform-tools/adb", |
| 102 "//third_party/catapult/third_party/gsutil/", | 102 "//third_party/catapult/third_party/gsutil/", |
| 103 "//third_party/catapult/devil/devil/devil_dependencies.json", | 103 "//third_party/catapult/devil/devil/devil_dependencies.json", |
| 104 "//third_party/proguard/lib/proguard.jar", |
| 104 ] | 105 ] |
| 105 data_deps = [ | 106 data_deps = [ |
| 106 "//tools/swarming_client:isolate_py", | 107 "//tools/swarming_client:isolate_py", |
| 107 ] | 108 ] |
| 108 } | 109 } |
| 109 | 110 |
| 110 # Create wrapper scripts in out/bin that takes care of setting the | 111 # Create wrapper scripts in out/bin that takes care of setting the |
| 111 # --output-directory. | 112 # --output-directory. |
| 112 _scripts_to_wrap = [ | 113 _scripts_to_wrap = [ |
| 113 # TODO(agrieve): Once GYP is no more, delete the checked-in adb_gdb_* scripts | 114 # TODO(agrieve): Once GYP is no more, delete the checked-in adb_gdb_* scripts |
| (...skipping 13 matching lines...) Expand all Loading... |
| 127 _target_name = get_path_info(script, "name") + "_wrapper" | 128 _target_name = get_path_info(script, "name") + "_wrapper" |
| 128 _wrapper_targets += [ ":$_target_name" ] | 129 _wrapper_targets += [ ":$_target_name" ] |
| 129 wrapper_script(_target_name) { | 130 wrapper_script(_target_name) { |
| 130 target = script | 131 target = script |
| 131 } | 132 } |
| 132 } | 133 } |
| 133 | 134 |
| 134 group("wrapper_scripts") { | 135 group("wrapper_scripts") { |
| 135 deps = _wrapper_targets | 136 deps = _wrapper_targets |
| 136 } | 137 } |
| OLD | NEW |