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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 10399041: Make setup.exe compatible with the component build (2nd try). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use a genexp+str.find() to find the insert_index Created 8 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 | Annotate | Revision Log
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': 'executable', 9 'type': 'executable',
10 'mac_bundle': 1, 10 'mac_bundle': 1,
(...skipping 26 matching lines...) Expand all
37 # be necessary to list app-Info.plist once, not the three times it is 37 # be necessary to list app-Info.plist once, not the three times it is
38 # listed here. 38 # listed here.
39 'mac_bundle_resources!': [ 39 'mac_bundle_resources!': [
40 'app/app-Info.plist', 40 'app/app-Info.plist',
41 ], 41 ],
42 'xcode_settings': { 42 'xcode_settings': {
43 'CHROMIUM_STRIP_SAVE_FILE': 'app/app.saves', 43 'CHROMIUM_STRIP_SAVE_FILE': 'app/app.saves',
44 'INFOPLIST_FILE': 'app/app-Info.plist', 44 'INFOPLIST_FILE': 'app/app-Info.plist',
45 }, 45 },
46 'conditions': [ 46 'conditions': [
47 ['component == "shared_library"', {
48 'msvs_settings': {
49 'VCManifestTool': {
50 'EmbedManifest': 'false',
51 },
52 },
53 }],
47 ['order_profiling!=0 and (chromeos==1 or OS=="linux")', { 54 ['order_profiling!=0 and (chromeos==1 or OS=="linux")', {
48 'dependencies' : [ 55 'dependencies' : [
49 '../tools/cygprofile/cygprofile.gyp:cygprofile', 56 '../tools/cygprofile/cygprofile.gyp:cygprofile',
50 ], 57 ],
51 }], 58 }],
52 ['order_text_section!=""', { 59 ['order_text_section!=""', {
53 'target_conditions' : [ 60 'target_conditions' : [
54 ['_toolset=="target"', { 61 ['_toolset=="target"', {
55 'ldflags': [ 62 'ldflags': [
56 '-Wl,-section-ordering-file=<(order_text_section)' ], 63 '-Wl,-section-ordering-file=<(order_text_section)' ],
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after
561 'configurations': { 568 'configurations': {
562 'Common_Base': { 569 'Common_Base': {
563 'msvs_target_platform': 'x64', 570 'msvs_target_platform': 'x64',
564 }, 571 },
565 }, 572 },
566 }, 573 },
567 ], 574 ],
568 }], 575 }],
569 ], 576 ],
570 } 577 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_installer.gypi » ('j') | chrome/tools/build/win/create_installer_archive.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698