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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 9701050: Make setup.exe compatible with the component build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed nits 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 'copies': [
49 {
50 'destination': '<(PRODUCT_DIR)',
51 'files': [
52 'app/chrome.exe.manifest',
53 ],
54 }
grt (UTC plus 2) 2012/05/11 17:01:22 comma here, too
gab 2012/05/11 17:30:24 Whoopsie!
55 ],
56 }],
47 ['order_text_section!=""', { 57 ['order_text_section!=""', {
48 'target_conditions' : [ 58 'target_conditions' : [
49 ['_toolset=="target"', { 59 ['_toolset=="target"', {
50 'ldflags': [ 60 'ldflags': [
51 '-Wl,-section-ordering-file=<(order_text_section)' ], 61 '-Wl,-section-ordering-file=<(order_text_section)' ],
52 }], 62 }],
53 ] 63 ]
54 }], 64 }],
55 ['OS == "android"', { 65 ['OS == "android"', {
56 # Don't put the 'chrome' target in 'all' on android 66 # Don't put the 'chrome' target in 'all' on android
(...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after
556 'configurations': { 566 'configurations': {
557 'Common_Base': { 567 'Common_Base': {
558 'msvs_target_platform': 'x64', 568 'msvs_target_platform': 'x64',
559 }, 569 },
560 }, 570 },
561 }, 571 },
562 ], 572 ],
563 }], 573 }],
564 ], 574 ],
565 } 575 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | chrome/chrome_installer.gypi » ('j') | chrome/chrome_installer.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698