| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
| (...skipping 1117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1128 "//tools/perf/chrome_telemetry_build/", | 1128 "//tools/perf/chrome_telemetry_build/", |
| 1129 | 1129 |
| 1130 # From telemetry_gpu_unittests.isolate | 1130 # From telemetry_gpu_unittests.isolate |
| 1131 "//third_party/pylint/", | 1131 "//third_party/pylint/", |
| 1132 "//third_party/logilab/", | 1132 "//third_party/logilab/", |
| 1133 "//testing/scripts/common.py", | 1133 "//testing/scripts/common.py", |
| 1134 "//testing/xvfb.py", | 1134 "//testing/xvfb.py", |
| 1135 "//testing/scripts/run_telemetry_as_googletest.py", | 1135 "//testing/scripts/run_telemetry_as_googletest.py", |
| 1136 ] | 1136 ] |
| 1137 } | 1137 } |
| 1138 | |
| 1139 # TODO(dpranke), TODO(crbug.com/714336): tab_capture_end2end_tests | |
| 1140 # is really just browser_tests with some different flags. Figure out | |
| 1141 # what the right way to run this is given the different ways to | |
| 1142 # configure things in the //testing/buildbot/*.json files, here, | |
| 1143 # gn_isolate_map.pyl, and mb.py. There's too many knobs and the interaction | |
| 1144 # is strange and unclear at this point. For now, I *think* this will just | |
| 1145 # have the effect of disabling the test in analyze. :(. | |
| 1146 group("tab_capture_end2end_tests") { | |
| 1147 testonly = true | |
| 1148 deps = [ | |
| 1149 # ":browser_tests", | |
| 1150 ] | |
| 1151 } | |
| 1152 } | 1138 } |
| 1153 | 1139 |
| 1154 static_library("browser_tests_runner") { | 1140 static_library("browser_tests_runner") { |
| 1155 testonly = true | 1141 testonly = true |
| 1156 sources = [] | 1142 sources = [] |
| 1157 | 1143 |
| 1158 deps = [ | 1144 deps = [ |
| 1159 ":test_support", | 1145 ":test_support", |
| 1160 ] | 1146 ] |
| 1161 | 1147 |
| (...skipping 4081 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5243 } | 5229 } |
| 5244 | 5230 |
| 5245 if (is_win) { | 5231 if (is_win) { |
| 5246 loadable_module("conflicts_dll") { | 5232 loadable_module("conflicts_dll") { |
| 5247 testonly = true | 5233 testonly = true |
| 5248 sources = [ | 5234 sources = [ |
| 5249 "conflicts/conflicts_dll.cc", | 5235 "conflicts/conflicts_dll.cc", |
| 5250 ] | 5236 ] |
| 5251 } | 5237 } |
| 5252 } | 5238 } |
| OLD | NEW |