| 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 2921 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2932 data = [ | 2932 data = [ |
| 2933 # Needed for isolate script to execute. | 2933 # Needed for isolate script to execute. |
| 2934 "//testing/scripts/common.py", | 2934 "//testing/scripts/common.py", |
| 2935 "//testing/xvfb.py", | 2935 "//testing/xvfb.py", |
| 2936 "//testing/scripts/run_telemetry_benchmark_as_googletest.py", | 2936 "//testing/scripts/run_telemetry_benchmark_as_googletest.py", |
| 2937 ] | 2937 ] |
| 2938 } | 2938 } |
| 2939 | 2939 |
| 2940 group("angle_perftests") { | 2940 group("angle_perftests") { |
| 2941 testonly = true | 2941 testonly = true |
| 2942 if (is_win) { | 2942 if (is_win || is_linux) { |
| 2943 data_deps = [ | 2943 data_deps = [ |
| 2944 "//third_party/angle/src/tests:angle_perftests", | 2944 "//third_party/angle/src/tests:angle_perftests", |
| 2945 ] | 2945 ] |
| 2946 } | 2946 } |
| 2947 | 2947 |
| 2948 data = [ | 2948 data = [ |
| 2949 # Needed for isolate script to execute. | 2949 # Needed for isolate script to execute. |
| 2950 "//testing/scripts/common.py", | 2950 "//testing/scripts/common.py", |
| 2951 "//testing/xvfb.py", | 2951 "//testing/xvfb.py", |
| 2952 "//testing/scripts/run_gtest_perf_test.py", | 2952 "//testing/scripts/run_gtest_perf_test.py", |
| (...skipping 2132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5085 } | 5085 } |
| 5086 | 5086 |
| 5087 if (is_win) { | 5087 if (is_win) { |
| 5088 loadable_module("conflicts_dll") { | 5088 loadable_module("conflicts_dll") { |
| 5089 testonly = true | 5089 testonly = true |
| 5090 sources = [ | 5090 sources = [ |
| 5091 "conflicts/conflicts_dll.cc", | 5091 "conflicts/conflicts_dll.cc", |
| 5092 ] | 5092 ] |
| 5093 } | 5093 } |
| 5094 } | 5094 } |
| OLD | NEW |