| 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 if (!is_android) { | 5 if (!is_android) { |
| 6 group("perf") { | 6 group("perf") { |
| 7 testonly = true |
| 7 deps = [ | 8 deps = [ |
| 8 "//tools/perf/chrome_telemetry_build:telemetry_chrome_test", | 9 "//tools/perf/chrome_telemetry_build:telemetry_chrome_test", |
| 9 ] | 10 ] |
| 10 | 11 |
| 11 data = [ | 12 data = [ |
| 12 "//tools/perf/", | 13 "//tools/perf/", |
| 13 | 14 |
| 14 # Field trial config | 15 # Field trial config |
| 15 "//tools/variations/", | 16 "//tools/variations/", |
| 16 "//testing/variations/", | 17 "//testing/variations/", |
| 17 ] | 18 ] |
| 18 } | 19 } |
| 19 } | 20 } |
| 20 | 21 |
| 21 if (is_android) { | 22 if (is_android) { |
| 22 import("//build/config/android/rules.gni") | 23 import("//build/config/android/rules.gni") |
| 23 | 24 |
| 24 wrapper_script("run_benchmark_wrapper") { | 25 wrapper_script("run_benchmark_wrapper") { |
| 25 target = "run_benchmark" | 26 target = "run_benchmark" |
| 26 flag_name = "--chromium-output-directory" | 27 flag_name = "--chromium-output-directory" |
| 27 } | 28 } |
| 28 } | 29 } |
| OLD | NEW |