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

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

Issue 2048563002: Fix chrome_telemetry_build's GN dependencies for Mac OS X. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
« chrome/BUILD.gn ('K') | « chrome/BUILD.gn ('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 = [
(...skipping 21 matching lines...) Expand all
32 32
33 # TODO(stip): remove the content_shell dependency below after the GPU bots 33 # TODO(stip): remove the content_shell dependency below after the GPU bots
34 # are switched over to use Chromium instead. crbug.com/616392. 34 # are switched over to use Chromium instead. crbug.com/616392.
35 "//content/shell:content_shell", 35 "//content/shell:content_shell",
36 ] 36 ]
37 } else { 37 } else {
38 data_deps = [ 38 data_deps = [
39 "//third_party/catapult/telemetry:bitmaptools", 39 "//third_party/catapult/telemetry:bitmaptools",
40 ] 40 ]
41 41
42 if (!is_mac) { 42 data_deps += [ "//chrome" ]
43 # TODO(kbr): this used to be "//chrome". Had to change this to
44 # chrome_initial temporarily to work around crbug.com/536192.
45 data_deps += [ "//chrome:chrome_initial" ]
46 } else {
47 data_deps += [ "//chrome" ]
48 }
49 } 43 }
50 44
51 data = [ 45 data = [
52 "//tools/perf/chrome_telemetry_build/", 46 "//tools/perf/chrome_telemetry_build/",
53 "//third_party/catapult/", 47 "//third_party/catapult/",
54 ] 48 ]
55 49
56 if (is_win) { 50 if (is_win) {
57 data_deps += [ "//chrome:reorder_imports" ] 51 data_deps += [ "//chrome:reorder_imports" ]
58 data += [ "//components/crash/content/tools/generate_breakpad_symbols.py" ] 52 data += [ "//components/crash/content/tools/generate_breakpad_symbols.py" ]
(...skipping 20 matching lines...) Expand all
79 "$root_out_dir/base.dll.pdb", 73 "$root_out_dir/base.dll.pdb",
80 "$root_out_dir/blink_platform.dll.pdb", 74 "$root_out_dir/blink_platform.dll.pdb",
81 "$root_out_dir/blink_web.dll.pdb", 75 "$root_out_dir/blink_web.dll.pdb",
82 "$root_out_dir/content.dll.pdb", 76 "$root_out_dir/content.dll.pdb",
83 ] 77 ]
84 } else { 78 } else {
85 data += [ "$root_out_dir/chrome_child.dll.pdb" ] 79 data += [ "$root_out_dir/chrome_child.dll.pdb" ]
86 } 80 }
87 } 81 }
88 } 82 }
OLDNEW
« chrome/BUILD.gn ('K') | « chrome/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698