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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 19275010: Embed compatibility manifest into all *.exe files (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: style fix Created 7 years, 4 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 | « chrome/chrome_dll.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': 'executable', 9 'type': 'executable',
10 'mac_bundle': 1, 10 'mac_bundle': 1,
(...skipping 27 matching lines...) Expand all
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"', { 47 ['component == "shared_library"', {
48 'msvs_settings': { 48 'variables': {
49 'VCManifestTool': { 49 'win_use_external_manifest': 1,
50 'EmbedManifest': 'false',
51 },
52 }, 50 },
53 }], 51 }],
54 ['order_profiling!=0 and (chromeos==1 or OS=="linux")', { 52 ['order_profiling!=0 and (chromeos==1 or OS=="linux")', {
55 'dependencies' : [ 53 'dependencies' : [
56 '../tools/cygprofile/cygprofile.gyp:cygprofile', 54 '../tools/cygprofile/cygprofile.gyp:cygprofile',
57 ], 55 ],
58 }], 56 }],
59 ['order_text_section!=""', { 57 ['order_text_section!=""', {
60 'target_conditions' : [ 58 'target_conditions' : [
61 ['_toolset=="target"', { 59 ['_toolset=="target"', {
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after
492 'dbghelp.dll', 490 'dbghelp.dll',
493 'dwmapi.dll', 491 'dwmapi.dll',
494 'uxtheme.dll', 492 'uxtheme.dll',
495 'ole32.dll', 493 'ole32.dll',
496 'oleaut32.dll', 494 'oleaut32.dll',
497 ], 495 ],
498 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself. 496 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself.
499 'SubSystem': '2', 497 'SubSystem': '2',
500 }, 498 },
501 'VCManifestTool': { 499 'VCManifestTool': {
502 'AdditionalManifestFiles': '$(ProjectDir)\\app\\chrome.exe.manifes t', 500 'AdditionalManifestFiles': [
501 '$(ProjectDir)\\app\\chrome.exe.manifest',
502 ],
503 }, 503 },
504 }, 504 },
505 'actions': [ 505 'actions': [
506 { 506 {
507 'action_name': 'first_run', 507 'action_name': 'first_run',
508 'inputs': [ 508 'inputs': [
509 'app/FirstRun', 509 'app/FirstRun',
510 ], 510 ],
511 'outputs': [ 511 'outputs': [
512 '<(PRODUCT_DIR)/First Run', 512 '<(PRODUCT_DIR)/First Run',
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
635 'dependencies': [ 635 'dependencies': [
636 'chrome_nacl_win64', 636 'chrome_nacl_win64',
637 ], 637 ],
638 }], 638 }],
639 ], 639 ],
640 }, 640 },
641 ], 641 ],
642 }], 642 }],
643 ], 643 ],
644 } 644 }
OLDNEW
« no previous file with comments | « chrome/chrome_dll.gypi ('k') | chrome/chrome_installer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698