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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 857123002: Disable Win32k renderer lockdown if DirectWrite is disabled. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix cloudprint Created 5 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
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 596 matching lines...) Expand 10 before | Expand all | Expand 10 after
607 'product_name': 'nacl64', 607 'product_name': 'nacl64',
608 'sources': [ 608 'sources': [
609 'app/chrome_crash_reporter_client.cc', 609 'app/chrome_crash_reporter_client.cc',
610 'common/crash_keys.cc', 610 'common/crash_keys.cc',
611 'nacl/nacl_exe_win_64.cc', 611 'nacl/nacl_exe_win_64.cc',
612 '../content/app/startup_helper_win.cc', 612 '../content/app/startup_helper_win.cc',
613 '../content/common/sandbox_init_win.cc', 613 '../content/common/sandbox_init_win.cc',
614 '../content/common/sandbox_win.cc', 614 '../content/common/sandbox_win.cc',
615 '../content/public/common/content_switches.cc', 615 '../content/public/common/content_switches.cc',
616 '../content/public/common/sandboxed_process_launcher_delegate.cc ', 616 '../content/public/common/sandboxed_process_launcher_delegate.cc ',
617 '../ui/gfx/switches.cc',
617 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/nacl64_exe_version.rc ', 618 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/nacl64_exe_version.rc ',
618 ], 619 ],
619 'dependencies': [ 620 'dependencies': [
620 'chrome_version_resources', 621 'chrome_version_resources',
621 'installer_util_nacl_win64', 622 'installer_util_nacl_win64',
622 '../base/base.gyp:base_i18n_nacl_win64', 623 '../base/base.gyp:base_i18n_nacl_win64',
623 '../base/base.gyp:base_win64', 624 '../base/base.gyp:base_win64',
624 '../base/base.gyp:base_static_win64', 625 '../base/base.gyp:base_static_win64',
625 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp :dynamic_annotations_win64', 626 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp :dynamic_annotations_win64',
626 '../breakpad/breakpad.gyp:breakpad_handler_win64', 627 '../breakpad/breakpad.gyp:breakpad_handler_win64',
627 '../breakpad/breakpad.gyp:breakpad_sender_win64', 628 '../breakpad/breakpad.gyp:breakpad_sender_win64',
628 '../components/components.gyp:breakpad_win64', 629 '../components/components.gyp:breakpad_win64',
629 '../chrome/common_constants.gyp:common_constants_win64', 630 '../chrome/common_constants.gyp:common_constants_win64',
630 '../components/nacl.gyp:nacl_win64', 631 '../components/nacl.gyp:nacl_win64',
631 '../crypto/crypto.gyp:crypto_nacl_win64', 632 '../crypto/crypto.gyp:crypto_nacl_win64',
632 '../ipc/ipc.gyp:ipc_win64', 633 '../ipc/ipc.gyp:ipc_win64',
633 '../sandbox/sandbox.gyp:sandbox_win64', 634 '../sandbox/sandbox.gyp:sandbox_win64',
634 ], 635 ],
635 'defines': [ 636 'defines': [
636 '<@(nacl_win64_defines)', 637 '<@(nacl_win64_defines)',
637 'COMPILE_CONTENT_STATICALLY', 638 'COMPILE_CONTENT_STATICALLY',
639 'COMPILE_GFX_STATICALLY',
638 ], 640 ],
639 'include_dirs': [ 641 'include_dirs': [
640 '<(SHARED_INTERMEDIATE_DIR)/chrome', 642 '<(SHARED_INTERMEDIATE_DIR)/chrome',
641 ], 643 ],
642 'msvs_settings': { 644 'msvs_settings': {
643 'VCLinkerTool': { 645 'VCLinkerTool': {
644 'ImportLibrary': '$(OutDir)\\lib\\nacl64_exe.lib', 646 'ImportLibrary': '$(OutDir)\\lib\\nacl64_exe.lib',
645 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 647 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
646 }, 648 },
647 }, 649 },
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
691 'dependencies': [ 693 'dependencies': [
692 'chrome_nacl_win64', 694 'chrome_nacl_win64',
693 ], 695 ],
694 }], 696 }],
695 ], 697 ],
696 }, 698 },
697 ], 699 ],
698 }], 700 }],
699 ], 701 ],
700 } 702 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698