OLD | NEW |
1 # | 1 # |
2 # Copyright (C) 2009 Google Inc. All rights reserved. | 2 # Copyright (C) 2009 Google Inc. All rights reserved. |
3 # | 3 # |
4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
6 # met: | 6 # met: |
7 # | 7 # |
8 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
10 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
329 ], | 329 ], |
330 'conditions': [ | 330 'conditions': [ |
331 ['OS=="win" and component=="shared_library"', { | 331 ['OS=="win" and component=="shared_library"', { |
332 'defines': [ | 332 'defines': [ |
333 'USING_V8_SHARED', | 333 'USING_V8_SHARED', |
334 ], | 334 ], |
335 }], | 335 }], |
336 ['OS=="win"', { | 336 ['OS=="win"', { |
337 # In generated bindings code: 'switch contains default but no case'. | 337 # In generated bindings code: 'switch contains default but no case'. |
338 # Disable c4267 warnings until we fix size_t to int truncations. | 338 # Disable c4267 warnings until we fix size_t to int truncations. |
339 # 4702 is disabled because of issues in Bison-generated | 339 # 4701 and 4702 are disabled because of issues in Bison-generated |
340 # XPathGrammar.cpp and CSSGrammar.cpp. | 340 # XPathGrammar.cpp and CSSGrammar.cpp. |
341 'msvs_disabled_warnings': [ 4065, 4267, 4702 ], | 341 'msvs_disabled_warnings': [ 4065, 4267, 4701, 4702 ], |
342 }], | 342 }], |
343 ['OS in ("linux", "android") and "WTF_USE_WEBAUDIO_IPP=1" in feature_def
ines', { | 343 ['OS in ("linux", "android") and "WTF_USE_WEBAUDIO_IPP=1" in feature_def
ines', { |
344 'cflags': [ | 344 'cflags': [ |
345 '<!@(pkg-config --cflags-only-I ipp)', | 345 '<!@(pkg-config --cflags-only-I ipp)', |
346 ], | 346 ], |
347 }], | 347 }], |
348 ], | 348 ], |
349 }, | 349 }, |
350 { | 350 { |
351 # We'll soon split libwebcore in multiple smaller libraries. | 351 # We'll soon split libwebcore in multiple smaller libraries. |
(...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
827 '<(bindings_core_v8_output_dir)/V8LayerRectList.h', | 827 '<(bindings_core_v8_output_dir)/V8LayerRectList.h', |
828 '<(bindings_core_v8_output_dir)/V8RefCountedScriptWrappable.cpp', | 828 '<(bindings_core_v8_output_dir)/V8RefCountedScriptWrappable.cpp', |
829 '<(bindings_core_v8_output_dir)/V8RefCountedScriptWrappable.h', | 829 '<(bindings_core_v8_output_dir)/V8RefCountedScriptWrappable.h', |
830 ], | 830 ], |
831 'sources/': [ | 831 'sources/': [ |
832 ['exclude', 'testing/js'], | 832 ['exclude', 'testing/js'], |
833 ], | 833 ], |
834 }, | 834 }, |
835 ], # targets | 835 ], # targets |
836 } | 836 } |
OLD | NEW |