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 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 '<(blink_core_output_dir)/StylePropertyShorthand.cpp', | 274 '<(blink_core_output_dir)/StylePropertyShorthand.cpp', |
275 | 275 |
276 # Generated from make_style_builder.py | 276 # Generated from make_style_builder.py |
277 '<(blink_core_output_dir)/StyleBuilder.cpp', | 277 '<(blink_core_output_dir)/StyleBuilder.cpp', |
278 '<(blink_core_output_dir)/StyleBuilderFunctions.cpp', | 278 '<(blink_core_output_dir)/StyleBuilderFunctions.cpp', |
279 | 279 |
280 # Generated from make_css_property_metadata.py | 280 # Generated from make_css_property_metadata.py |
281 '<(blink_core_output_dir)/CSSPropertyMetadata.cpp', | 281 '<(blink_core_output_dir)/CSSPropertyMetadata.cpp', |
282 | 282 |
283 # IDL dictionary impl files generated by IDL compiler | 283 # IDL dictionary impl files generated by IDL compiler |
284 '<@(generated_core_dictionary_files)', | 284 # FIXME: Add '<@(generated_core_dictionary_files)', |
| 285 # See comment on core/core.gypi |
285 ], | 286 ], |
286 'conditions': [ | 287 'conditions': [ |
287 ['OS=="win" and component=="shared_library"', { | 288 ['OS=="win" and component=="shared_library"', { |
288 'defines': [ | 289 'defines': [ |
289 'USING_V8_SHARED', | 290 'USING_V8_SHARED', |
290 ], | 291 ], |
291 }], | 292 }], |
292 ['OS=="win"', { | 293 ['OS=="win"', { |
293 # In generated bindings code: 'switch contains default but no case'. | 294 # In generated bindings code: 'switch contains default but no case'. |
294 # Disable c4267 warnings until we fix size_t to int truncations. | 295 # Disable c4267 warnings until we fix size_t to int truncations. |
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
787 '<(bindings_core_v8_output_dir)/V8RefCountedScriptWrappable.h', | 788 '<(bindings_core_v8_output_dir)/V8RefCountedScriptWrappable.h', |
788 '<(bindings_core_v8_output_dir)/V8InternalDictionary.cpp', | 789 '<(bindings_core_v8_output_dir)/V8InternalDictionary.cpp', |
789 '<(bindings_core_v8_output_dir)/V8InternalDictionary.h', | 790 '<(bindings_core_v8_output_dir)/V8InternalDictionary.h', |
790 ], | 791 ], |
791 'sources/': [ | 792 'sources/': [ |
792 ['exclude', 'testing/js'], | 793 ['exclude', 'testing/js'], |
793 ], | 794 ], |
794 }, | 795 }, |
795 ], # targets | 796 ], # targets |
796 } | 797 } |
OLD | NEW |