| 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 # FIXME: Add '<@(generated_core_dictionary_files)', | 284 '<@(generated_core_dictionary_files)', |
| 285 # See comment on core/core.gypi | |
| 286 ], | 285 ], |
| 287 'conditions': [ | 286 'conditions': [ |
| 288 ['OS=="win" and component=="shared_library"', { | 287 ['OS=="win" and component=="shared_library"', { |
| 289 'defines': [ | 288 'defines': [ |
| 290 'USING_V8_SHARED', | 289 'USING_V8_SHARED', |
| 291 ], | 290 ], |
| 292 }], | 291 }], |
| 293 ['OS=="win"', { | 292 ['OS=="win"', { |
| 294 # In generated bindings code: 'switch contains default but no case'. | 293 # In generated bindings code: 'switch contains default but no case'. |
| 295 # Disable c4267 warnings until we fix size_t to int truncations. | 294 # Disable c4267 warnings until we fix size_t to int truncations. |
| (...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 788 '<(bindings_core_v8_output_dir)/V8RefCountedScriptWrappable.h', | 787 '<(bindings_core_v8_output_dir)/V8RefCountedScriptWrappable.h', |
| 789 '<(bindings_core_v8_output_dir)/V8InternalDictionary.cpp', | 788 '<(bindings_core_v8_output_dir)/V8InternalDictionary.cpp', |
| 790 '<(bindings_core_v8_output_dir)/V8InternalDictionary.h', | 789 '<(bindings_core_v8_output_dir)/V8InternalDictionary.h', |
| 791 ], | 790 ], |
| 792 'sources/': [ | 791 'sources/': [ |
| 793 ['exclude', 'testing/js'], | 792 ['exclude', 'testing/js'], |
| 794 ], | 793 ], |
| 795 }, | 794 }, |
| 796 ], # targets | 795 ], # targets |
| 797 } | 796 } |
| OLD | NEW |