Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(398)

Side by Side Diff: build/android/BUILD.gn

Issue 1922083003: 🐻 Add gtest disabled test filters as swarming data on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698