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

Side by Side Diff: content/shell/BUILD.gn

Issue 2926843002: Fixing data_deps on Mac for content_shell (Closed)
Patch Set: Just the build fix. Created 3 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
« no previous file with comments | « no previous file | 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/sanitizers/sanitizers.gni") 6 import("//build/config/sanitizers/sanitizers.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/config/win/console_app.gni") 8 import("//build/config/win/console_app.gni")
9 import("//build/config/win/manifest.gni") 9 import("//build/config/win/manifest.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after
493 "//content/shell/test_runner:resources", 493 "//content/shell/test_runner:resources",
494 ] 494 ]
495 ldflags = [ 495 ldflags = [
496 # The main app is at Content Shell.app/Contents/MacOS/Content Shell 496 # The main app is at Content Shell.app/Contents/MacOS/Content Shell
497 # so set the rpath up to Contents/ so that the loader can find 497 # so set the rpath up to Contents/ so that the loader can find
498 # Framworks/. 498 # Framworks/.
499 "-rpath", 499 "-rpath",
500 "@executable_path/../", 500 "@executable_path/../",
501 ] 501 ]
502 info_plist_target = ":content_shell_plist" 502 info_plist_target = ":content_shell_plist"
503 data_deps = [
504 ":content_shell_lib",
505 ]
503 } 506 }
504 } else { 507 } else {
505 executable("content_shell") { 508 executable("content_shell") {
506 testonly = true 509 testonly = true
507 510
508 sources = [ 511 sources = [
509 "app/shell_main.cc", 512 "app/shell_main.cc",
510 ] 513 ]
511 514
512 if (is_win) { 515 if (is_win) {
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
806 data_deps += [ 809 data_deps += [
807 "//breakpad:dump_syms", 810 "//breakpad:dump_syms",
808 "//breakpad:microdump_stackwalk", 811 "//breakpad:microdump_stackwalk",
809 "//breakpad:minidump_dump", 812 "//breakpad:minidump_dump",
810 "//breakpad:minidump_stackwalk", 813 "//breakpad:minidump_stackwalk",
811 "//breakpad:symupload", 814 "//breakpad:symupload",
812 "//tools/android/forwarder2", 815 "//tools/android/forwarder2",
813 ] 816 ]
814 } 817 }
815 } 818 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698