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 import("//build/config/compiler/compiler.gni") | 5 import("//build/config/compiler/compiler.gni") |
6 | 6 |
7 group("telemetry_chrome_test") { | 7 group("telemetry_chrome_test") { |
8 deps = [ | 8 deps = [ |
9 "//tools/telemetry:telemetry_test_support", | 9 "//tools/telemetry:telemetry_test_support", |
10 ] | 10 ] |
11 | 11 |
12 data_deps = [ | 12 data_deps = [ |
13 # TODO(kbr): this used to be "//chrome". Had to change this to | 13 # TODO(kbr): this used to be "//chrome". Had to change this to |
14 # chrome_initial temporarily to work around crbug.com/536192. | 14 # chrome_initial temporarily to work around crbug.com/536192. |
15 "//chrome:chrome_initial", | 15 "//chrome:chrome_initial", |
16 "//tools/telemetry:bitmaptools", | 16 "//tools/telemetry:bitmaptools", |
17 ] | 17 ] |
18 | 18 |
19 data = [ | 19 data = [ |
20 "//tools/perf/chrome_telemetry_build/", | 20 "//tools/perf/chrome_telemetry_build/", |
21 ] | 21 ] |
22 | 22 |
23 if (is_win) { | 23 if (is_win) { |
24 data_deps += [ "//content/shell:crash_service" ] | 24 data_deps += [ "//chrome/tools/crash_service" ] |
25 data += [ "//components/crash/content/tools/generate_breakpad_symbols.py" ] | 25 data += [ "//components/crash/content/tools/generate_breakpad_symbols.py" ] |
26 } | 26 } |
27 | 27 |
28 if (is_linux) { | 28 if (is_linux) { |
29 data_deps += [ "//tools/xdisplaycheck" ] | 29 data_deps += [ "//tools/xdisplaycheck" ] |
30 } | 30 } |
31 | 31 |
32 if (is_win && (symbol_level == 1 || symbol_level == 2)) { | 32 if (is_win && (symbol_level == 1 || symbol_level == 2)) { |
33 # TODO(GYP): These should be provided automatically through data_deps. | 33 # TODO(GYP): These should be provided automatically through data_deps. |
34 data += [ "$root_out_dir/chrome.exe.pdb" ] | 34 data += [ "$root_out_dir/chrome.exe.pdb" ] |
35 if (is_component_build) { | 35 if (is_component_build) { |
36 data += [ | 36 data += [ |
37 "$root_out_dir/base.dll.pdb", | 37 "$root_out_dir/base.dll.pdb", |
38 "$root_out_dir/blink_platform.dll.pdb", | 38 "$root_out_dir/blink_platform.dll.pdb", |
39 "$root_out_dir/blink_web.dll.pdb", | 39 "$root_out_dir/blink_web.dll.pdb", |
40 "$root_out_dir/content.dll.pdb", | 40 "$root_out_dir/content.dll.pdb", |
41 ] | 41 ] |
42 } | 42 } |
43 } | 43 } |
44 } | 44 } |
OLD | NEW |