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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 179903004: Always embed manifests, even in component builds! (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: don't change .bat file in this CL -- CQ no likee Batch Created 6 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « build/common.gypi ('k') | chrome/chrome_installer.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'chrome', 8 'target_name': 'chrome',
9 'type': 'none', 9 'type': 'none',
10 'dependencies': [ 'chrome_initial', ], 10 'dependencies': [ 'chrome_initial', ],
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 # be necessary to list app-Info.plist once, not the three times it is 73 # be necessary to list app-Info.plist once, not the three times it is
74 # listed here. 74 # listed here.
75 'mac_bundle_resources!': [ 75 'mac_bundle_resources!': [
76 'app/app-Info.plist', 76 'app/app-Info.plist',
77 ], 77 ],
78 'xcode_settings': { 78 'xcode_settings': {
79 'CHROMIUM_STRIP_SAVE_FILE': 'app/app.saves', 79 'CHROMIUM_STRIP_SAVE_FILE': 'app/app.saves',
80 'INFOPLIST_FILE': 'app/app-Info.plist', 80 'INFOPLIST_FILE': 'app/app-Info.plist',
81 }, 81 },
82 'conditions': [ 82 'conditions': [
83 ['component == "shared_library"', {
84 'variables': {
85 'win_use_external_manifest': 1,
86 },
87 }],
88 ['order_profiling!=0 and (chromeos==1 or OS=="linux")', { 83 ['order_profiling!=0 and (chromeos==1 or OS=="linux")', {
89 'dependencies' : [ 84 'dependencies' : [
90 '../tools/cygprofile/cygprofile.gyp:cygprofile', 85 '../tools/cygprofile/cygprofile.gyp:cygprofile',
91 ], 86 ],
92 }], 87 }],
93 ['order_text_section!=""', { 88 ['order_text_section!=""', {
94 'target_conditions' : [ 89 'target_conditions' : [
95 ['_toolset=="target"', { 90 ['_toolset=="target"', {
96 'ldflags': [ 91 'ldflags': [
97 '-Wl,-section-ordering-file=<(order_text_section)' ], 92 '-Wl,-section-ordering-file=<(order_text_section)' ],
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after
698 'dependencies': [ 693 'dependencies': [
699 'chrome_nacl_win64', 694 'chrome_nacl_win64',
700 ], 695 ],
701 }], 696 }],
702 ], 697 ],
703 }, 698 },
704 ], 699 ],
705 }], 700 }],
706 ], 701 ],
707 } 702 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | chrome/chrome_installer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698