| 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 992 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1003 ] | 1003 ] |
| 1004 | 1004 |
| 1005 data = [ | 1005 data = [ |
| 1006 "//tools/perf/run_telemetry_tests", | 1006 "//tools/perf/run_telemetry_tests", |
| 1007 | 1007 |
| 1008 # For isolate contract. | 1008 # For isolate contract. |
| 1009 "//testing/scripts/common.py", | 1009 "//testing/scripts/common.py", |
| 1010 "//testing/xvfb.py", | 1010 "//testing/xvfb.py", |
| 1011 "//testing/scripts/run_telemetry_as_googletest.py", | 1011 "//testing/scripts/run_telemetry_as_googletest.py", |
| 1012 ] | 1012 ] |
| 1013 |
| 1014 if (enable_package_mash_services) { |
| 1015 deps += [ "//chrome:chrome_test" ] |
| 1016 data_deps = [ |
| 1017 "//chrome:chrome_test", |
| 1018 ] |
| 1019 } |
| 1013 } | 1020 } |
| 1014 | 1021 |
| 1015 group("telemetry_gpu_unittests_run") { | 1022 group("telemetry_gpu_unittests_run") { |
| 1016 testonly = true | 1023 testonly = true |
| 1017 deps = [ | 1024 deps = [ |
| 1018 ":telemetry_gpu_unittests", | 1025 ":telemetry_gpu_unittests", |
| 1019 ] | 1026 ] |
| 1020 } | 1027 } |
| 1021 | 1028 |
| 1022 group("telemetry_gpu_unittests") { | 1029 group("telemetry_gpu_unittests") { |
| (...skipping 1869 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2892 deps = [ | 2899 deps = [ |
| 2893 "//tools/perf:perf", | 2900 "//tools/perf:perf", |
| 2894 ] | 2901 ] |
| 2895 | 2902 |
| 2896 data = [ | 2903 data = [ |
| 2897 # For isolate contract. | 2904 # For isolate contract. |
| 2898 "//testing/scripts/common.py", | 2905 "//testing/scripts/common.py", |
| 2899 "//testing/xvfb.py", | 2906 "//testing/xvfb.py", |
| 2900 "//testing/scripts/run_telemetry_as_googletest.py", | 2907 "//testing/scripts/run_telemetry_as_googletest.py", |
| 2901 ] | 2908 ] |
| 2909 |
| 2910 if (enable_package_mash_services) { |
| 2911 deps += [ "//chrome:chrome_test" ] |
| 2912 data_deps = [ |
| 2913 "//chrome:chrome_test", |
| 2914 ] |
| 2915 } |
| 2902 } | 2916 } |
| 2903 | 2917 |
| 2904 group("telemetry_perf_tests") { | 2918 group("telemetry_perf_tests") { |
| 2905 testonly = true | 2919 testonly = true |
| 2906 deps = [ | 2920 deps = [ |
| 2907 "//tools/perf/:perf", | 2921 "//tools/perf/:perf", |
| 2908 ] | 2922 ] |
| 2909 | 2923 |
| 2910 data = [ | 2924 data = [ |
| 2911 # Needed for isolate script to execute. | 2925 # Needed for isolate script to execute. |
| (...skipping 2240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5152 } | 5166 } |
| 5153 | 5167 |
| 5154 if (is_win) { | 5168 if (is_win) { |
| 5155 loadable_module("conflicts_dll") { | 5169 loadable_module("conflicts_dll") { |
| 5156 testonly = true | 5170 testonly = true |
| 5157 sources = [ | 5171 sources = [ |
| 5158 "conflicts/conflicts_dll.cc", | 5172 "conflicts/conflicts_dll.cc", |
| 5159 ] | 5173 ] |
| 5160 } | 5174 } |
| 5161 } | 5175 } |
| OLD | NEW |