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 839 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
850 }], | 850 }], |
851 ['OS == "linux"', { | 851 ['OS == "linux"', { |
852 'sources': [ | 852 'sources': [ |
853 # content_extractor is a standalone content extraction tool bu
ilt as | 853 # content_extractor is a standalone content extraction tool bu
ilt as |
854 # a MANUAL component_browsertest. | 854 # a MANUAL component_browsertest. |
855 'dom_distiller/standalone/content_extractor.cc', | 855 'dom_distiller/standalone/content_extractor.cc', |
856 ], | 856 ], |
857 }], | 857 }], |
858 ['OS=="win"', { | 858 ['OS=="win"', { |
859 'resource_include_dirs': [ | 859 'resource_include_dirs': [ |
| 860 '<(SHARED_INTERMEDIATE_DIR)/content/app/resources', |
860 '<(SHARED_INTERMEDIATE_DIR)/webkit', | 861 '<(SHARED_INTERMEDIATE_DIR)/webkit', |
861 ], | 862 ], |
862 'sources': [ | 863 'sources': [ |
863 '../content/shell/app/resource.h', | 864 '../content/shell/app/resource.h', |
864 '../content/shell/app/shell.rc', | 865 '../content/shell/app/shell.rc', |
865 # TODO: It would be nice to have these pulled in | 866 # TODO: It would be nice to have these pulled in |
866 # automatically from direct_dependent_settings in | 867 # automatically from direct_dependent_settings in |
867 # their various targets (net.gyp:net_resources, etc.), | 868 # their various targets (net.gyp:net_resources, etc.), |
868 # but that causes errors in other targets when | 869 # but that causes errors in other targets when |
869 # resulting .res files get referenced multiple times. | 870 # resulting .res files get referenced multiple times. |
870 '<(SHARED_INTERMEDIATE_DIR)/blink/public/resources/blink_resourc
es.rc', | 871 '<(SHARED_INTERMEDIATE_DIR)/blink/public/resources/blink_resourc
es.rc', |
871 '<(SHARED_INTERMEDIATE_DIR)/content/app/strings/content_strings_
en-US.rc', | 872 '<(SHARED_INTERMEDIATE_DIR)/content/app/strings/content_strings_
en-US.rc', |
872 '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.rc', | 873 '<(SHARED_INTERMEDIATE_DIR)/net/net_resources.rc', |
873 ], | 874 ], |
874 'dependencies': [ | 875 'dependencies': [ |
| 876 '<(DEPTH)/content/app/resources/content_resources.gyp:content_re
sources', |
875 '<(DEPTH)/content/app/strings/content_strings.gyp:content_string
s', | 877 '<(DEPTH)/content/app/strings/content_strings.gyp:content_string
s', |
876 '<(DEPTH)/net/net.gyp:net_resources', | 878 '<(DEPTH)/net/net.gyp:net_resources', |
877 '<(DEPTH)/third_party/WebKit/public/blink_resources.gyp:blink_re
sources', | 879 '<(DEPTH)/third_party/WebKit/public/blink_resources.gyp:blink_re
sources', |
878 '<(DEPTH)/third_party/iaccessible2/iaccessible2.gyp:iaccessible2
', | 880 '<(DEPTH)/third_party/iaccessible2/iaccessible2.gyp:iaccessible2
', |
879 '<(DEPTH)/third_party/isimpledom/isimpledom.gyp:isimpledom', | 881 '<(DEPTH)/third_party/isimpledom/isimpledom.gyp:isimpledom', |
880 '<(DEPTH)/webkit/glue/resources/webkit_resources.gyp:webkit_reso
urces', | |
881 ], | 882 ], |
882 'configurations': { | 883 'configurations': { |
883 'Debug_Base': { | 884 'Debug_Base': { |
884 'msvs_settings': { | 885 'msvs_settings': { |
885 'VCLinkerTool': { | 886 'VCLinkerTool': { |
886 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', | 887 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', |
887 }, | 888 }, |
888 }, | 889 }, |
889 }, | 890 }, |
890 }, | 891 }, |
891 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 892 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
892 'msvs_disabled_warnings': [ 4267, ], | 893 'msvs_disabled_warnings': [ 4267, ], |
893 }], | 894 }], |
894 ['OS=="win" and win_use_allocator_shim==1', { | 895 ['OS=="win" and win_use_allocator_shim==1', { |
895 'dependencies': [ | 896 'dependencies': [ |
896 '../base/allocator/allocator.gyp:allocator', | 897 '../base/allocator/allocator.gyp:allocator', |
897 ], | 898 ], |
898 }], | 899 }], |
899 ], | 900 ], |
900 }, | 901 }, |
901 ], | 902 ], |
902 }], | 903 }], |
903 ], | 904 ], |
904 } | 905 } |
OLD | NEW |