| 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(GYP_GONE): Delete this after we've converted everything to GN. |
| 1140 # This target exist only for compatibility w/ GYP. |
| 1141 group("tab_capture_end2end_tests") { |
| 1142 testonly = true |
| 1143 deps = [ |
| 1144 ":browser_tests", |
| 1145 ] |
| 1146 } |
| 1138 } | 1147 } |
| 1139 | 1148 |
| 1140 static_library("browser_tests_runner") { | 1149 static_library("browser_tests_runner") { |
| 1141 testonly = true | 1150 testonly = true |
| 1142 sources = [] | 1151 sources = [] |
| 1143 | 1152 |
| 1144 deps = [ | 1153 deps = [ |
| 1145 ":test_support", | 1154 ":test_support", |
| 1146 ] | 1155 ] |
| 1147 | 1156 |
| (...skipping 4076 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5224 } | 5233 } |
| 5225 | 5234 |
| 5226 if (is_win) { | 5235 if (is_win) { |
| 5227 loadable_module("conflicts_dll") { | 5236 loadable_module("conflicts_dll") { |
| 5228 testonly = true | 5237 testonly = true |
| 5229 sources = [ | 5238 sources = [ |
| 5230 "conflicts/conflicts_dll.cc", | 5239 "conflicts/conflicts_dll.cc", |
| 5231 ] | 5240 ] |
| 5232 } | 5241 } |
| 5233 } | 5242 } |
| OLD | NEW |