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/config.gni") | 5 import("//build/config/android/config.gni") |
6 import("//build/config/android/rules.gni") | 6 import("//build/config/android/rules.gni") |
7 | 7 |
8 if (enable_java_templates) { | 8 if (enable_java_templates) { |
9 import("//third_party/ijar/ijar.gni") | 9 import("//third_party/ijar/ijar.gni") |
10 | 10 |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
107 group("test_runner_py") { | 107 group("test_runner_py") { |
108 _py_files = read_file("test_runner.pydeps", "list lines") | 108 _py_files = read_file("test_runner.pydeps", "list lines") |
109 | 109 |
110 # Filter out comments. | 110 # Filter out comments. |
111 set_sources_assignment_filter([ "#*" ]) | 111 set_sources_assignment_filter([ "#*" ]) |
112 sources = _py_files | 112 sources = _py_files |
113 | 113 |
114 data = sources + [ | 114 data = sources + [ |
115 "devil_chromium.json", | 115 "devil_chromium.json", |
116 "pylib/gtest/filter/", | 116 "pylib/gtest/filter/", |
117 "pylib/instrumentation/render_test.html.jinja", | |
jbudorick
2017/05/13 16:15:42
future nit: this should be in a subdir of instrume
| |
117 "test_wrapper/logdog_wrapper.py", | 118 "test_wrapper/logdog_wrapper.py", |
118 "${android_sdk_build_tools}/aapt", | 119 "${android_sdk_build_tools}/aapt", |
119 "${android_sdk_build_tools}/dexdump", | 120 "${android_sdk_build_tools}/dexdump", |
120 "${android_sdk_build_tools}/lib64/libc++.so", | 121 "${android_sdk_build_tools}/lib64/libc++.so", |
121 "${android_sdk_build_tools}/split-select", | 122 "${android_sdk_build_tools}/split-select", |
122 "${android_sdk_root}/platform-tools/adb", | 123 "${android_sdk_root}/platform-tools/adb", |
123 "//third_party/catapult/third_party/gsutil/", | 124 "//third_party/catapult/third_party/gsutil/", |
124 "//third_party/catapult/devil/devil/devil_dependencies.json", | 125 "//third_party/catapult/devil/devil/devil_dependencies.json", |
125 "//third_party/proguard/lib/proguard.jar", | 126 "//third_party/proguard/lib/proguard.jar", |
126 ] | 127 ] |
(...skipping 28 matching lines...) Expand all Loading... | |
155 _target_name = get_path_info(script, "name") + "_wrapper" | 156 _target_name = get_path_info(script, "name") + "_wrapper" |
156 _wrapper_targets += [ ":$_target_name" ] | 157 _wrapper_targets += [ ":$_target_name" ] |
157 wrapper_script(_target_name) { | 158 wrapper_script(_target_name) { |
158 target = script | 159 target = script |
159 } | 160 } |
160 } | 161 } |
161 | 162 |
162 group("wrapper_scripts") { | 163 group("wrapper_scripts") { |
163 deps = _wrapper_targets | 164 deps = _wrapper_targets |
164 } | 165 } |
OLD | NEW |