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