| 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 group("test_runner_py") { | 104 group("test_runner_py") { |
| 105 _py_files = read_file("test_runner.pydeps", "list lines") | 105 _py_files = read_file("test_runner.pydeps", "list lines") |
| 106 | 106 |
| 107 # Filter out comments. | 107 # Filter out comments. |
| 108 set_sources_assignment_filter([ "#*" ]) | 108 set_sources_assignment_filter([ "#*" ]) |
| 109 sources = _py_files | 109 sources = _py_files |
| 110 | 110 |
| 111 data = sources + [ | 111 data = sources + [ |
| 112 "devil_chromium.json", | 112 "devil_chromium.json", |
| 113 "pylib/gtest/filter/", | 113 "pylib/gtest/filter/", |
| 114 "test_wrapper/logdog_wrapper.py", | |
| 115 "//third_party/android_tools/sdk/build-tools/24.0.2/aapt", | 114 "//third_party/android_tools/sdk/build-tools/24.0.2/aapt", |
| 116 "//third_party/android_tools/sdk/build-tools/24.0.2/dexdump", | 115 "//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", | 116 "//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", | 117 "//third_party/android_tools/sdk/build-tools/24.0.2/split-select", |
| 119 "//third_party/android_tools/sdk/platform-tools/adb", | 118 "//third_party/android_tools/sdk/platform-tools/adb", |
| 120 "//third_party/catapult/third_party/gsutil/", | 119 "//third_party/catapult/third_party/gsutil/", |
| 121 "//third_party/catapult/devil/devil/devil_dependencies.json", | 120 "//third_party/catapult/devil/devil/devil_dependencies.json", |
| 122 "//third_party/proguard/lib/proguard.jar", | 121 "//third_party/proguard/lib/proguard.jar", |
| 123 ] | 122 ] |
| 124 } | 123 } |
| (...skipping 17 matching lines...) Expand all Loading... |
| 142 _target_name = get_path_info(script, "name") + "_wrapper" | 141 _target_name = get_path_info(script, "name") + "_wrapper" |
| 143 _wrapper_targets += [ ":$_target_name" ] | 142 _wrapper_targets += [ ":$_target_name" ] |
| 144 wrapper_script(_target_name) { | 143 wrapper_script(_target_name) { |
| 145 target = script | 144 target = script |
| 146 } | 145 } |
| 147 } | 146 } |
| 148 | 147 |
| 149 group("wrapper_scripts") { | 148 group("wrapper_scripts") { |
| 150 deps = _wrapper_targets | 149 deps = _wrapper_targets |
| 151 } | 150 } |
| OLD | NEW |