| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 | 86 |
| 87 group("test_runner_py") { | 87 group("test_runner_py") { |
| 88 _py_files = read_file("test_runner.pydeps", "list lines") | 88 _py_files = read_file("test_runner.pydeps", "list lines") |
| 89 | 89 |
| 90 # Filter out comments. | 90 # Filter out comments. |
| 91 set_sources_assignment_filter([ "#*" ]) | 91 set_sources_assignment_filter([ "#*" ]) |
| 92 sources = _py_files | 92 sources = _py_files |
| 93 | 93 |
| 94 data = sources + [ | 94 data = sources + [ |
| 95 "devil_chromium.json", | 95 "devil_chromium.json", |
| 96 "pylib/gtest/filter/", |
| 96 "//third_party/android_tools/sdk/build-tools/23.0.1/aapt", | 97 "//third_party/android_tools/sdk/build-tools/23.0.1/aapt", |
| 97 "//third_party/android_tools/sdk/build-tools/23.0.1/dexdump", | 98 "//third_party/android_tools/sdk/build-tools/23.0.1/dexdump", |
| 98 "//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", |
| 99 "//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", |
| 100 "//third_party/android_tools/sdk/platform-tools/adb", | 101 "//third_party/android_tools/sdk/platform-tools/adb", |
| 101 "//third_party/catapult/third_party/gsutil/", | 102 "//third_party/catapult/third_party/gsutil/", |
| 102 "//third_party/catapult/devil/devil/devil_dependencies.json", | 103 "//third_party/catapult/devil/devil/devil_dependencies.json", |
| 103 ] | 104 ] |
| 104 data_deps = [ | 105 data_deps = [ |
| 105 "//tools/swarming_client:isolate_py", | 106 "//tools/swarming_client:isolate_py", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 126 _target_name = get_path_info(script, "name") + "_wrapper" | 127 _target_name = get_path_info(script, "name") + "_wrapper" |
| 127 _wrapper_targets += [ ":$_target_name" ] | 128 _wrapper_targets += [ ":$_target_name" ] |
| 128 wrapper_script(_target_name) { | 129 wrapper_script(_target_name) { |
| 129 target = script | 130 target = script |
| 130 } | 131 } |
| 131 } | 132 } |
| 132 | 133 |
| 133 group("wrapper_scripts") { | 134 group("wrapper_scripts") { |
| 134 deps = _wrapper_targets | 135 deps = _wrapper_targets |
| 135 } | 136 } |
| OLD | NEW |