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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 137373002: Move Version Assembly code out of chrome_elf. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Watchlists Created 6 years, 11 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 | « chrome/app/version_assembly/version_assembly_manifest_action.gypi ('k') | chrome_elf/OWNERS » ('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 490 matching lines...) Expand 10 before | Expand all | Expand 10 after
501 'ole32.dll', 501 'ole32.dll',
502 'oleaut32.dll', 502 'oleaut32.dll',
503 ], 503 ],
504 'AdditionalDependencies': [ 'wintrust.lib' ], 504 'AdditionalDependencies': [ 'wintrust.lib' ],
505 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself. 505 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself.
506 'SubSystem': '2', 506 'SubSystem': '2',
507 }, 507 },
508 'VCManifestTool': { 508 'VCManifestTool': {
509 'AdditionalManifestFiles': [ 509 'AdditionalManifestFiles': [
510 '$(ProjectDir)\\app\\chrome.exe.manifest', 510 '$(ProjectDir)\\app\\chrome.exe.manifest',
511 '<(SHARED_INTERMEDIATE_DIR)/chrome_elf/version_assembly.manifest ', 511 '<(SHARED_INTERMEDIATE_DIR)/chrome/app/version_assembly/version_ assembly.manifest',
512 ], 512 ],
513 }, 513 },
514 }, 514 },
515 'actions': [ 515 'actions': [
516 { 516 {
517 'action_name': 'first_run', 517 'action_name': 'first_run',
518 'inputs': [ 518 'inputs': [
519 'app/FirstRun', 519 'app/FirstRun',
520 ], 520 ],
521 'outputs': [ 521 'outputs': [
522 '<(PRODUCT_DIR)/First Run', 522 '<(PRODUCT_DIR)/First Run',
523 ], 523 ],
524 'action': ['cp', '-f', '<@(_inputs)', '<@(_outputs)'], 524 'action': ['cp', '-f', '<@(_inputs)', '<@(_outputs)'],
525 'message': 'Copy first run complete sentinel file', 525 'message': 'Copy first run complete sentinel file',
526 'msvs_cygwin_shell': 1, 526 'msvs_cygwin_shell': 1,
527 }, 527 },
528 { 528 {
529 'action_name': 'chrome_exe_manifest', 529 'action_name': 'chrome_exe_manifest',
530 'includes': [ 530 'includes': [
531 '../chrome_elf/chrome_exe_manifest_action.gypi', 531 'app/version_assembly/chrome_exe_manifest_action.gypi',
532 ], 532 ],
533 }, 533 },
534 { 534 {
535 'action_name': 'version_assembly_manifest', 535 'action_name': 'version_assembly_manifest',
536 'includes': [ 536 'includes': [
537 '../chrome_elf/version_assembly_manifest_action.gypi', 537 'app/version_assembly/version_assembly_manifest_action.gypi',
538 ], 538 ],
539 }, 539 },
540 ], 540 ],
541 }, { # 'OS!="win" 541 }, { # 'OS!="win"
542 'sources!': [ 542 'sources!': [
543 'app/client_util.cc', 543 'app/client_util.cc',
544 ], 544 ],
545 }], 545 }],
546 ['OS=="win" and component=="shared_library"', { 546 ['OS=="win" and component=="shared_library"', {
547 'defines': ['COMPILE_CONTENT_STATICALLY'], 547 'defines': ['COMPILE_CONTENT_STATICALLY'],
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
655 'dependencies': [ 655 'dependencies': [
656 'chrome_nacl_win64', 656 'chrome_nacl_win64',
657 ], 657 ],
658 }], 658 }],
659 ], 659 ],
660 }, 660 },
661 ], 661 ],
662 }], 662 }],
663 ], 663 ],
664 } 664 }
OLDNEW
« no previous file with comments | « chrome/app/version_assembly/version_assembly_manifest_action.gypi ('k') | chrome_elf/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698