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

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

Issue 1954593002: Ported telemetry_gpu_test target to Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months 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 | « tools/mb/mb.py ('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 import("//build/config/compiler/compiler.gni") 5 import("//build/config/compiler/compiler.gni")
6 6
7 if (is_win) { 7 if (is_win) {
8 action("copy_cdb_to_output") { 8 action("copy_cdb_to_output") {
9 script = "//build/win/copy_cdb_to_output.py" 9 script = "//build/win/copy_cdb_to_output.py"
10 inputs = [ 10 inputs = [
11 script, 11 script,
12 ] 12 ]
13 outputs = [ 13 outputs = [
14 "$root_out_dir/cdb/cdb.exe", 14 "$root_out_dir/cdb/cdb.exe",
15 "$root_out_dir/cdb/dbgeng.dll", 15 "$root_out_dir/cdb/dbgeng.dll",
16 "$root_out_dir/cdb/dbghelp.dll", 16 "$root_out_dir/cdb/dbghelp.dll",
17 "$root_out_dir/cdb/dbgmodel.dll", 17 "$root_out_dir/cdb/dbgmodel.dll",
18 ] 18 ]
19 args = [ 19 args = [
20 rebase_path("$root_out_dir/cdb", root_out_dir), 20 rebase_path("$root_out_dir/cdb", root_out_dir),
21 target_cpu, 21 target_cpu,
22 ] 22 ]
23 } 23 }
24 } 24 }
25 25
26 group("telemetry_chrome_test") { 26 group("telemetry_chrome_test") {
27 data_deps = [ 27 testonly = true
28 # TODO(kbr): this used to be "//chrome". Had to change this to 28
29 # chrome_initial temporarily to work around crbug.com/536192. 29 if (is_android) {
30 "//chrome:chrome_initial", 30 data_deps = [
31 "//third_party/catapult/telemetry:bitmaptools", 31 "//content/shell:content_shell",
32 ] 32 ]
33 } else {
34 data_deps = [
35 # TODO(kbr): this used to be "//chrome". Had to change this to
36 # chrome_initial temporarily to work around crbug.com/536192.
37 "//chrome:chrome_initial",
38 "//third_party/catapult/telemetry:bitmaptools",
Ken Russell (switch to Gerrit) 2016/05/04 23:04:27 Note: this dependency was "bitmaptools#host" in th
aiolos (Not reviewing) 2016/05/04 23:08:56 I think it should be the following, but could use
Dirk Pranke 2016/05/04 23:09:11 This should be "//third_party/catapult/telemetry:b
Ken Russell (switch to Gerrit) 2016/05/04 23:10:34 Thanks! dpranke@ verified below. We'll refactor t
39 ]
40 }
33 41
34 data = [ 42 data = [
35 "//tools/perf/chrome_telemetry_build/", 43 "//tools/perf/chrome_telemetry_build/",
36 "//third_party/catapult/", 44 "//third_party/catapult/",
37 ] 45 ]
38 46
39 if (is_win) { 47 if (is_win) {
40 data_deps += [ "//chrome:reorder_imports" ] 48 data_deps += [ "//chrome:reorder_imports" ]
41 data += [ "//components/crash/content/tools/generate_breakpad_symbols.py" ] 49 data += [ "//components/crash/content/tools/generate_breakpad_symbols.py" ]
42 } 50 }
(...skipping 19 matching lines...) Expand all
62 "$root_out_dir/base.dll.pdb", 70 "$root_out_dir/base.dll.pdb",
63 "$root_out_dir/blink_platform.dll.pdb", 71 "$root_out_dir/blink_platform.dll.pdb",
64 "$root_out_dir/blink_web.dll.pdb", 72 "$root_out_dir/blink_web.dll.pdb",
65 "$root_out_dir/content.dll.pdb", 73 "$root_out_dir/content.dll.pdb",
66 ] 74 ]
67 } else { 75 } else {
68 data += [ "$root_out_dir/chrome_child.dll.pdb" ] 76 data += [ "$root_out_dir/chrome_child.dll.pdb" ]
69 } 77 }
70 } 78 }
71 } 79 }
OLDNEW
« no previous file with comments | « tools/mb/mb.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698