| 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 1118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 | 1138 |
| 1139 # TODO(GYP_GONE): Delete this after we've converted everything to GN. | 1139 # TODO(dpranke), TODO(crbug.com/714336): tab_capture_end2end_tests |
| 1140 # This target exist only for compatibility w/ GYP. | 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. :(. |
| 1141 group("tab_capture_end2end_tests") { | 1146 group("tab_capture_end2end_tests") { |
| 1142 testonly = true | 1147 testonly = true |
| 1143 deps = [ | 1148 deps = [ |
| 1144 ":browser_tests", | 1149 # ":browser_tests", |
| 1145 ] | 1150 ] |
| 1146 } | 1151 } |
| 1147 } | 1152 } |
| 1148 | 1153 |
| 1149 static_library("browser_tests_runner") { | 1154 static_library("browser_tests_runner") { |
| 1150 testonly = true | 1155 testonly = true |
| 1151 sources = [] | 1156 sources = [] |
| 1152 | 1157 |
| 1153 deps = [ | 1158 deps = [ |
| 1154 ":test_support", | 1159 ":test_support", |
| (...skipping 4078 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5233 } | 5238 } |
| 5234 | 5239 |
| 5235 if (is_win) { | 5240 if (is_win) { |
| 5236 loadable_module("conflicts_dll") { | 5241 loadable_module("conflicts_dll") { |
| 5237 testonly = true | 5242 testonly = true |
| 5238 sources = [ | 5243 sources = [ |
| 5239 "conflicts/conflicts_dll.cc", | 5244 "conflicts/conflicts_dll.cc", |
| 5240 ] | 5245 ] |
| 5241 } | 5246 } |
| 5242 } | 5247 } |
| OLD | NEW |