| 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 2913 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2924 data = [ | 2924 data = [ |
| 2925 # Needed for isolate script to execute. | 2925 # Needed for isolate script to execute. |
| 2926 "//testing/scripts/common.py", | 2926 "//testing/scripts/common.py", |
| 2927 "//testing/xvfb.py", | 2927 "//testing/xvfb.py", |
| 2928 "//testing/scripts/run_telemetry_benchmark_as_googletest.py", | 2928 "//testing/scripts/run_telemetry_benchmark_as_googletest.py", |
| 2929 ] | 2929 ] |
| 2930 } | 2930 } |
| 2931 | 2931 |
| 2932 group("angle_perftests") { | 2932 group("angle_perftests") { |
| 2933 testonly = true | 2933 testonly = true |
| 2934 if (is_win) { | 2934 if (is_win || is_linux) { |
| 2935 data_deps = [ | 2935 data_deps = [ |
| 2936 "//third_party/angle/src/tests:angle_perftests", | 2936 "//third_party/angle/src/tests:angle_perftests", |
| 2937 ] | 2937 ] |
| 2938 } | 2938 } |
| 2939 | 2939 |
| 2940 data = [ | 2940 data = [ |
| 2941 # Needed for isolate script to execute. | 2941 # Needed for isolate script to execute. |
| 2942 "//testing/scripts/common.py", | 2942 "//testing/scripts/common.py", |
| 2943 "//testing/xvfb.py", | 2943 "//testing/xvfb.py", |
| 2944 "//testing/scripts/run_gtest_perf_test.py", | 2944 "//testing/scripts/run_gtest_perf_test.py", |
| (...skipping 2131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5076 } | 5076 } |
| 5077 | 5077 |
| 5078 if (is_win) { | 5078 if (is_win) { |
| 5079 loadable_module("conflicts_dll") { | 5079 loadable_module("conflicts_dll") { |
| 5080 testonly = true | 5080 testonly = true |
| 5081 sources = [ | 5081 sources = [ |
| 5082 "conflicts/conflicts_dll.cc", | 5082 "conflicts/conflicts_dll.cc", |
| 5083 ] | 5083 ] |
| 5084 } | 5084 } |
| 5085 } | 5085 } |
| OLD | NEW |