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