| 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 957 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 968 "//tools/perf/chrome_telemetry_build/", | 968 "//tools/perf/chrome_telemetry_build/", |
| 969 | 969 |
| 970 # From telemetry_gpu_unittests.isolate | 970 # From telemetry_gpu_unittests.isolate |
| 971 "//third_party/pylint/", | 971 "//third_party/pylint/", |
| 972 "//third_party/logilab/", | 972 "//third_party/logilab/", |
| 973 "//testing/scripts/common.py", | 973 "//testing/scripts/common.py", |
| 974 "//testing/xvfb.py", | 974 "//testing/xvfb.py", |
| 975 "//testing/scripts/run_telemetry_as_googletest.py", | 975 "//testing/scripts/run_telemetry_as_googletest.py", |
| 976 ] | 976 ] |
| 977 } | 977 } |
| 978 | |
| 979 # TODO(dpranke), TODO(crbug.com/714336): tab_capture_end2end_tests | |
| 980 # is really just browser_tests with some different flags. Figure out | |
| 981 # what the right way to run this is given the different ways to | |
| 982 # configure things in the //testing/buildbot/*.json files, here, | |
| 983 # gn_isolate_map.pyl, and mb.py. There's too many knobs and the interaction | |
| 984 # is strange and unclear at this point. For now, I *think* this will just | |
| 985 # have the effect of disabling the test in analyze. :(. | |
| 986 group("tab_capture_end2end_tests") { | |
| 987 testonly = true | |
| 988 deps = [ | |
| 989 # ":browser_tests", | |
| 990 ] | |
| 991 } | |
| 992 } | 978 } |
| 993 | 979 |
| 994 static_library("browser_tests_runner") { | 980 static_library("browser_tests_runner") { |
| 995 testonly = true | 981 testonly = true |
| 996 sources = [] | 982 sources = [] |
| 997 | 983 |
| 998 deps = [ | 984 deps = [ |
| 999 ":test_support", | 985 ":test_support", |
| 1000 ] | 986 ] |
| 1001 | 987 |
| (...skipping 4027 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5029 } | 5015 } |
| 5030 | 5016 |
| 5031 if (is_win) { | 5017 if (is_win) { |
| 5032 loadable_module("conflicts_dll") { | 5018 loadable_module("conflicts_dll") { |
| 5033 testonly = true | 5019 testonly = true |
| 5034 sources = [ | 5020 sources = [ |
| 5035 "conflicts/conflicts_dll.cc", | 5021 "conflicts/conflicts_dll.cc", |
| 5036 ] | 5022 ] |
| 5037 } | 5023 } |
| 5038 } | 5024 } |
| OLD | NEW |