| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'variables': { | 6 'variables': { |
| 7 # This turns on e.g. the filename-based detection of which | 7 # This turns on e.g. the filename-based detection of which |
| 8 # platforms to include source files on (e.g. files ending in | 8 # platforms to include source files on (e.g. files ending in |
| 9 # _mac.h or _mac.cc are only compiled on MacOSX). | 9 # _mac.h or _mac.cc are only compiled on MacOSX). |
| 10 'chromium_code': 1, | 10 'chromium_code': 1, |
| (...skipping 822 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 833 'sources': [ | 833 'sources': [ |
| 834 '../content/shell/app/resource.h', | 834 '../content/shell/app/resource.h', |
| 835 '../content/shell/app/shell.rc', | 835 '../content/shell/app/shell.rc', |
| 836 # TODO: It would be nice to have these pulled in | 836 # TODO: It would be nice to have these pulled in |
| 837 # automatically from direct_dependent_settings in | 837 # automatically from direct_dependent_settings in |
| 838 # their various targets (net.gyp:net_resources, etc.), | 838 # their various targets (net.gyp:net_resources, etc.), |
| 839 # but that causes errors in other targets when | 839 # but that causes errors in other targets when |
| 840 # resulting .res files get referenced multiple times. | 840 # resulting .res files get referenced multiple times. |
| 841 '<(SHARED_INTERMEDIATE_DIR)/blink/public/resources/blink_resourc
es.rc', | 841 '<(SHARED_INTERMEDIATE_DIR)/blink/public/resources/blink_resourc
es.rc', |
| 842 '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.rc', | 842 '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.rc', |
| 843 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_en-US.rc', | 843 '<(SHARED_INTERMEDIATE_DIR)/content/app/strings/content_strings_
en-US.rc', |
| 844 ], | 844 ], |
| 845 'dependencies': [ | 845 'dependencies': [ |
| 846 '<(DEPTH)/content/app/strings/content_strings.gyp:content_string
s', |
| 846 '<(DEPTH)/net/net.gyp:net_resources', | 847 '<(DEPTH)/net/net.gyp:net_resources', |
| 847 '<(DEPTH)/third_party/WebKit/public/blink_resources.gyp:blink_re
sources', | 848 '<(DEPTH)/third_party/WebKit/public/blink_resources.gyp:blink_re
sources', |
| 848 '<(DEPTH)/third_party/iaccessible2/iaccessible2.gyp:iaccessible2
', | 849 '<(DEPTH)/third_party/iaccessible2/iaccessible2.gyp:iaccessible2
', |
| 849 '<(DEPTH)/third_party/isimpledom/isimpledom.gyp:isimpledom', | 850 '<(DEPTH)/third_party/isimpledom/isimpledom.gyp:isimpledom', |
| 850 '<(DEPTH)/webkit/webkit_resources.gyp:webkit_resources', | 851 '<(DEPTH)/webkit/webkit_resources.gyp:webkit_resources', |
| 851 ], | 852 ], |
| 852 'configurations': { | 853 'configurations': { |
| 853 'Debug_Base': { | 854 'Debug_Base': { |
| 854 'msvs_settings': { | 855 'msvs_settings': { |
| 855 'VCLinkerTool': { | 856 'VCLinkerTool': { |
| 856 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', | 857 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', |
| 857 }, | 858 }, |
| 858 }, | 859 }, |
| 859 }, | 860 }, |
| 860 }, | 861 }, |
| 861 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 862 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 862 'msvs_disabled_warnings': [ 4267, ], | 863 'msvs_disabled_warnings': [ 4267, ], |
| 863 }], | 864 }], |
| 864 ['OS=="win" and win_use_allocator_shim==1', { | 865 ['OS=="win" and win_use_allocator_shim==1', { |
| 865 'dependencies': [ | 866 'dependencies': [ |
| 866 '../base/allocator/allocator.gyp:allocator', | 867 '../base/allocator/allocator.gyp:allocator', |
| 867 ], | 868 ], |
| 868 }], | 869 }], |
| 869 ], | 870 ], |
| 870 }, | 871 }, |
| 871 ], | 872 ], |
| 872 }], | 873 }], |
| 873 ], | 874 ], |
| 874 } | 875 } |
| OLD | NEW |