| 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 | 17 |
| 18 # Field trial dependencies | 18 # Field trial dependencies |
| 19 "//tools/json_comment_eater/", | 19 "//tools/json_comment_eater/", |
| 20 "//tools/json_to_struct/", | 20 "//tools/json_to_struct/", |
| 21 | 21 |
| 22 # For blink_perf benchmarks. | 22 # For blink_perf benchmarks. |
| 23 "//third_party/WebKit/PerformanceTests/", | 23 "//third_party/WebKit/PerformanceTests/", |
| 24 | 24 |
| 25 # For blink_perf.BlinkPerfPywebsocket benchmark. | |
| 26 "//third_party/pywebsocket/", | |
| 27 | |
| 28 # For smoothness.tough_canvas_cases | 25 # For smoothness.tough_canvas_cases |
| 29 "//chrome/test/data/perf/", | 26 "//chrome/test/data/perf/", |
| 30 | 27 |
| 31 # For image_decoding.measurement | 28 # For image_decoding.measurement |
| 32 "//chrome/test/data/image_decoding/", | 29 "//chrome/test/data/image_decoding/", |
| 33 | 30 |
| 34 # For indexeddb_perf | 31 # For indexeddb_perf |
| 35 "//chrome/test/data/indexeddb/", | 32 "//chrome/test/data/indexeddb/", |
| 36 ] | 33 ] |
| 37 } | 34 } |
| 38 | 35 |
| 39 if (is_android) { | 36 if (is_android) { |
| 40 import("//build/config/android/rules.gni") | 37 import("//build/config/android/rules.gni") |
| 41 | 38 |
| 42 wrapper_script("run_benchmark_wrapper") { | 39 wrapper_script("run_benchmark_wrapper") { |
| 43 target = "run_benchmark" | 40 target = "run_benchmark" |
| 44 flag_name = "--chromium-output-directory" | 41 flag_name = "--chromium-output-directory" |
| 45 } | 42 } |
| 46 } | 43 } |
| OLD | NEW |