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

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: 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
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 581 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 ',
607 'app/chrome_crash_reporter_client.cc',
608 'common/crash_keys.cc',
609 'nacl/nacl_exe_win_64.cc',
610 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/nacl64_exe_version.rc ', 610 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/nacl64_exe_version.rc ',
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',
(...skipping 64 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

Powered by Google App Engine
This is Rietveld 408576698