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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 911043002: Sort GYP files under chrome using tools/sort_sources.py (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 10 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': 'none', 9 'type': 'none',
10 'dependencies': [ 'chrome_initial', ], 10 'dependencies': [ 'chrome_initial', ],
(...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after
485 '../breakpad/breakpad.gyp:breakpad_handler', 485 '../breakpad/breakpad.gyp:breakpad_handler',
486 '../breakpad/breakpad.gyp:breakpad_sender', 486 '../breakpad/breakpad.gyp:breakpad_sender',
487 '../chrome_elf/chrome_elf.gyp:chrome_elf', 487 '../chrome_elf/chrome_elf.gyp:chrome_elf',
488 '../components/components.gyp:crash_component', 488 '../components/components.gyp:crash_component',
489 '../sandbox/sandbox.gyp:sandbox', 489 '../sandbox/sandbox.gyp:sandbox',
490 '../ui/gfx/gfx.gyp:gfx', 490 '../ui/gfx/gfx.gyp:gfx',
491 '../win8/metro_driver/metro_driver.gyp:metro_driver', 491 '../win8/metro_driver/metro_driver.gyp:metro_driver',
492 '../win8/delegate_execute/delegate_execute.gyp:*', 492 '../win8/delegate_execute/delegate_execute.gyp:*',
493 ], 493 ],
494 'sources': [ 494 'sources': [
495 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_exe_version.rc',
495 'app/chrome_crash_reporter_client.cc', 496 'app/chrome_crash_reporter_client.cc',
496 'app/chrome_crash_reporter_client.h', 497 'app/chrome_crash_reporter_client.h',
497 'app/chrome_exe.rc', 498 'app/chrome_exe.rc',
498 'common/crash_keys.cc', 499 'common/crash_keys.cc',
499 'common/crash_keys.h', 500 'common/crash_keys.h',
500 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_exe_version.rc',
501 ], 501 ],
502 'sources!': [ 502 'sources!': [
503 # We still want the _win entry point for sandbox, etc. 503 # We still want the _win entry point for sandbox, etc.
504 'app/chrome_exe_main_aura.cc', 504 'app/chrome_exe_main_aura.cc',
505 ], 505 ],
506 'msvs_settings': { 506 'msvs_settings': {
507 'VCLinkerTool': { 507 'VCLinkerTool': {
508 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib', 508 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib',
509 'OutputFile': '$(OutDir)\\initialexe\\chrome.exe', 509 'OutputFile': '$(OutDir)\\initialexe\\chrome.exe',
510 'DelayLoadDLLs': [ 510 'DelayLoadDLLs': [
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
592 }, 592 },
593 ], 593 ],
594 'conditions': [ 594 'conditions': [
595 ['disable_nacl!=1 and target_arch=="ia32"', { 595 ['disable_nacl!=1 and target_arch=="ia32"', {
596 'targets': [ 596 'targets': [
597 { 597 {
598 'target_name': 'chrome_nacl_win64', 598 'target_name': 'chrome_nacl_win64',
599 'type': 'executable', 599 'type': 'executable',
600 'product_name': 'nacl64', 600 'product_name': 'nacl64',
601 'sources': [ 601 'sources': [
602 'app/chrome_crash_reporter_client.cc',
603 'common/crash_keys.cc',
604 'nacl/nacl_exe_win_64.cc',
605 '../content/app/startup_helper_win.cc', 602 '../content/app/startup_helper_win.cc',
606 '../content/common/sandbox_init_win.cc', 603 '../content/common/sandbox_init_win.cc',
607 '../content/common/sandbox_win.cc', 604 '../content/common/sandbox_win.cc',
608 '../content/public/common/content_switches.cc', 605 '../content/public/common/content_switches.cc',
609 '../content/public/common/sandboxed_process_launcher_delegate.cc ', 606 '../content/public/common/sandboxed_process_launcher_delegate.cc ',
610 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/nacl64_exe_version.rc ', 607 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/nacl64_exe_version.rc ',
608 'app/chrome_crash_reporter_client.cc',
609 'common/crash_keys.cc',
610 'nacl/nacl_exe_win_64.cc',
611 ], 611 ],
612 'dependencies': [ 612 'dependencies': [
613 'chrome_version_resources', 613 'chrome_version_resources',
614 'installer_util_nacl_win64', 614 'installer_util_nacl_win64',
615 '../base/base.gyp:base_i18n_nacl_win64', 615 '../base/base.gyp:base_i18n_nacl_win64',
616 '../base/base.gyp:base_win64', 616 '../base/base.gyp:base_win64',
617 '../base/base.gyp:base_static_win64', 617 '../base/base.gyp:base_static_win64',
618 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp :dynamic_annotations_win64', 618 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp :dynamic_annotations_win64',
619 '../breakpad/breakpad.gyp:breakpad_handler_win64', 619 '../breakpad/breakpad.gyp:breakpad_handler_win64',
620 '../breakpad/breakpad.gyp:breakpad_sender_win64', 620 '../breakpad/breakpad.gyp:breakpad_sender_win64',
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
684 'dependencies': [ 684 'dependencies': [
685 'chrome_nacl_win64', 685 'chrome_nacl_win64',
686 ], 686 ],
687 }], 687 }],
688 ], 688 ],
689 }, 689 },
690 ], 690 ],
691 }], 691 }],
692 ], 692 ],
693 } 693 }
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