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

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

Issue 2092083004: Copy more helper DLLs for cdb.exe. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
« build/win/copy_cdb_to_output.py ('K') | « chrome/chrome_tests.gypi ('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",
nednguyen 2016/06/25 01:39:01 Why not just copy everything in cdb/ ?
Ken Russell (switch to Gerrit) 2016/06/27 18:46:36 I don't know how to express that sort of wildcard
18 "$root_out_dir/cdb/winext/ext.dll",
19 "$root_out_dir/cdb/winext/uext.dll",
20 "$root_out_dir/cdb/winxp/exts.dll",
21 "$root_out_dir/cdb/winxp/ntsdexts.dll",
18 ] 22 ]
19 args = [ 23 args = [
20 rebase_path("$root_out_dir/cdb", root_out_dir), 24 rebase_path("$root_out_dir/cdb", root_out_dir),
21 current_cpu, 25 current_cpu,
22 ] 26 ]
23 } 27 }
24 } 28 }
25 29
26 group("telemetry_chrome_test") { 30 group("telemetry_chrome_test") {
27 testonly = true 31 testonly = true
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 "$root_out_dir/base.dll.pdb", 81 "$root_out_dir/base.dll.pdb",
78 "$root_out_dir/blink_platform.dll.pdb", 82 "$root_out_dir/blink_platform.dll.pdb",
79 "$root_out_dir/blink_web.dll.pdb", 83 "$root_out_dir/blink_web.dll.pdb",
80 "$root_out_dir/content.dll.pdb", 84 "$root_out_dir/content.dll.pdb",
81 ] 85 ]
82 } else { 86 } else {
83 data += [ "$root_out_dir/chrome_child.dll.pdb" ] 87 data += [ "$root_out_dir/chrome_child.dll.pdb" ]
84 } 88 }
85 } 89 }
86 } 90 }
OLDNEW
« build/win/copy_cdb_to_output.py ('K') | « chrome/chrome_tests.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698