OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |