Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(290)

Side by Side Diff: tools/perf/chrome_telemetry_build/BUILD.gn

Issue 1461833002: Clean up BUILD gn target of telemetry_perf_unittests, telemetry_gpu_unittests, (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « testing/buildbot/chromium.win.json ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 }
OLDNEW
« no previous file with comments | « testing/buildbot/chromium.win.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698