OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 group("perf") { | 5 group("perf") { |
6 testonly = true | 6 testonly = true |
7 deps = [ | 7 deps = [ |
8 "//tools/perf/chrome_telemetry_build:telemetry_chrome_test", | 8 "//tools/perf/chrome_telemetry_build:telemetry_chrome_test", |
9 ] | 9 ] |
10 | 10 |
11 data = [ | 11 data = [ |
12 "//tools/perf/", | 12 "//tools/perf/", |
13 | 13 |
14 # Field trial config | 14 # Field trial config |
15 "//tools/variations/", | 15 "//tools/variations/", |
16 "//testing/variations/", | 16 "//testing/variations/", |
| 17 |
| 18 # For blink_perf benchmarks. |
| 19 "//third_party/WebKit/PerformanceTests/", |
| 20 |
| 21 # For blink_perf.BlinkPerfPywebsocket benchmark. |
| 22 "//third_party/pywebsocket/", |
17 ] | 23 ] |
18 } | 24 } |
19 | 25 |
20 if (is_android) { | 26 if (is_android) { |
21 import("//build/config/android/rules.gni") | 27 import("//build/config/android/rules.gni") |
22 | 28 |
23 wrapper_script("run_benchmark_wrapper") { | 29 wrapper_script("run_benchmark_wrapper") { |
24 target = "run_benchmark" | 30 target = "run_benchmark" |
25 flag_name = "--chromium-output-directory" | 31 flag_name = "--chromium-output-directory" |
26 } | 32 } |
27 } | 33 } |
OLD | NEW |