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 836 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
847 'sources': [ | 847 'sources': [ |
848 '../content/shell/app/resource.h', | 848 '../content/shell/app/resource.h', |
849 '../content/shell/app/shell.rc', | 849 '../content/shell/app/shell.rc', |
850 # TODO: It would be nice to have these pulled in | 850 # TODO: It would be nice to have these pulled in |
851 # automatically from direct_dependent_settings in | 851 # automatically from direct_dependent_settings in |
852 # their various targets (net.gyp:net_resources, etc.), | 852 # their various targets (net.gyp:net_resources, etc.), |
853 # but that causes errors in other targets when | 853 # but that causes errors in other targets when |
854 # resulting .res files get referenced multiple times. | 854 # resulting .res files get referenced multiple times. |
855 '<(SHARED_INTERMEDIATE_DIR)/blink/public/resources/blink_resourc es.rc', | 855 '<(SHARED_INTERMEDIATE_DIR)/blink/public/resources/blink_resourc es.rc', |
856 '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.rc', | 856 '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.rc', |
857 '<(SHARED_INTERMEDIATE_DIR)/webkit/webkit_strings_en-US.rc', | 857 '<(SHARED_INTERMEDIATE_DIR)/content/app/strings/content_strings_ en-US.rc', |
Avi (use Gerrit)
2014/08/08 22:30:55
sort?
tfarina
2014/08/09 16:29:43
Done.
| |
858 ], | 858 ], |
859 'dependencies': [ | 859 'dependencies': [ |
860 '<(DEPTH)/content/app/strings/content_strings.gyp:content_string s', | |
860 '<(DEPTH)/net/net.gyp:net_resources', | 861 '<(DEPTH)/net/net.gyp:net_resources', |
861 '<(DEPTH)/third_party/WebKit/public/blink_resources.gyp:blink_re sources', | 862 '<(DEPTH)/third_party/WebKit/public/blink_resources.gyp:blink_re sources', |
862 '<(DEPTH)/third_party/iaccessible2/iaccessible2.gyp:iaccessible2 ', | 863 '<(DEPTH)/third_party/iaccessible2/iaccessible2.gyp:iaccessible2 ', |
863 '<(DEPTH)/third_party/isimpledom/isimpledom.gyp:isimpledom', | 864 '<(DEPTH)/third_party/isimpledom/isimpledom.gyp:isimpledom', |
864 '<(DEPTH)/webkit/webkit_resources.gyp:webkit_resources', | 865 '<(DEPTH)/webkit/webkit_resources.gyp:webkit_resources', |
865 ], | 866 ], |
866 'configurations': { | 867 'configurations': { |
867 'Debug_Base': { | 868 'Debug_Base': { |
868 'msvs_settings': { | 869 'msvs_settings': { |
869 'VCLinkerTool': { | 870 'VCLinkerTool': { |
870 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', | 871 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', |
871 }, | 872 }, |
872 }, | 873 }, |
873 }, | 874 }, |
874 }, | 875 }, |
875 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 876 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
876 'msvs_disabled_warnings': [ 4267, ], | 877 'msvs_disabled_warnings': [ 4267, ], |
877 }], | 878 }], |
878 ['OS=="win" and win_use_allocator_shim==1', { | 879 ['OS=="win" and win_use_allocator_shim==1', { |
879 'dependencies': [ | 880 'dependencies': [ |
880 '../base/allocator/allocator.gyp:allocator', | 881 '../base/allocator/allocator.gyp:allocator', |
881 ], | 882 ], |
882 }], | 883 }], |
883 ], | 884 ], |
884 }, | 885 }, |
885 ], | 886 ], |
886 }], | 887 }], |
887 ], | 888 ], |
888 } | 889 } |
OLD | NEW |