Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(280)

Side by Side Diff: Source/core/core.gyp

Issue 429853002: IDL: Add build target for IDL dictionary impl generation in core (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 # Additional .cpp files for SVG. 271 # Additional .cpp files for SVG.
272 '<(blink_core_output_dir)/SVGElementFactory.cpp', 272 '<(blink_core_output_dir)/SVGElementFactory.cpp',
273 '<(blink_core_output_dir)/V8SVGElementWrapperFactory.cpp', 273 '<(blink_core_output_dir)/V8SVGElementWrapperFactory.cpp',
274 274
275 # Generated from make_style_shorthands.py 275 # Generated from make_style_shorthands.py
276 '<(blink_core_output_dir)/StylePropertyShorthand.cpp', 276 '<(blink_core_output_dir)/StylePropertyShorthand.cpp',
277 277
278 # Generated from make_style_builder.py 278 # Generated from make_style_builder.py
279 '<(blink_core_output_dir)/StyleBuilder.cpp', 279 '<(blink_core_output_dir)/StyleBuilder.cpp',
280 '<(blink_core_output_dir)/StyleBuilderFunctions.cpp', 280 '<(blink_core_output_dir)/StyleBuilderFunctions.cpp',
281
282 # IDL dictionary impl files generated by IDL compiler
283 # FIXME: Add '<@(generated_core_dictionary_files)',
284 # See comment on core/core.gypi
281 ], 285 ],
282 'conditions': [ 286 'conditions': [
283 ['OS=="win" and component=="shared_library"', { 287 ['OS=="win" and component=="shared_library"', {
284 'defines': [ 288 'defines': [
285 'USING_V8_SHARED', 289 'USING_V8_SHARED',
286 ], 290 ],
287 }], 291 }],
288 ['OS=="win"', { 292 ['OS=="win"', {
289 # In generated bindings code: 'switch contains default but no case'. 293 # In generated bindings code: 'switch contains default but no case'.
290 # Disable c4267 warnings until we fix size_t to int truncations. 294 # Disable c4267 warnings until we fix size_t to int truncations.
(...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after
731 }], 735 }],
732 ], 736 ],
733 }, 737 },
734 { 738 {
735 # GN version: //third_party/WebKit/Source/core:testing 739 # GN version: //third_party/WebKit/Source/core:testing
736 'target_name': 'webcore_testing', 740 'target_name': 'webcore_testing',
737 'type': 'static_library', 741 'type': 'static_library',
738 'dependencies': [ 742 'dependencies': [
739 '../config.gyp:config', 743 '../config.gyp:config',
740 'webcore', 744 'webcore',
745 'webcore_generated',
741 ], 746 ],
742 'defines': [ 747 'defines': [
743 'BLINK_IMPLEMENTATION=1', 748 'BLINK_IMPLEMENTATION=1',
744 'INSIDE_BLINK', 749 'INSIDE_BLINK',
745 ], 750 ],
746 'include_dirs': [ 751 'include_dirs': [
747 '<(bindings_core_v8_dir)', # FIXME: Remove once http://crbug.com/236119 is fixed. 752 '<(bindings_core_v8_dir)', # FIXME: Remove once http://crbug.com/236119 is fixed.
748 'testing', 753 'testing',
749 'testing/v8', 754 'testing/v8',
750 ], 755 ],
751 'sources': [ 756 'sources': [
752 # Note: file list duplicated in GN build. 757 # Note: file list duplicated in GN build.
753 '<@(webcore_testing_files)', 758 '<@(webcore_testing_files)',
759 '<(bindings_core_v8_output_dir)/V8DictionaryTest.cpp',
760 '<(bindings_core_v8_output_dir)/V8DictionaryTest.h',
754 '<(bindings_core_v8_output_dir)/V8GarbageCollectedScriptWrappable.cpp', 761 '<(bindings_core_v8_output_dir)/V8GarbageCollectedScriptWrappable.cpp',
755 '<(bindings_core_v8_output_dir)/V8GarbageCollectedScriptWrappable.h', 762 '<(bindings_core_v8_output_dir)/V8GarbageCollectedScriptWrappable.h',
756 '<(bindings_core_v8_output_dir)/V8GCObservation.cpp', 763 '<(bindings_core_v8_output_dir)/V8GCObservation.cpp',
757 '<(bindings_core_v8_output_dir)/V8GCObservation.h', 764 '<(bindings_core_v8_output_dir)/V8GCObservation.h',
758 '<(bindings_core_v8_output_dir)/V8PrivateScriptTest.cpp', 765 '<(bindings_core_v8_output_dir)/V8PrivateScriptTest.cpp',
759 '<(bindings_core_v8_output_dir)/V8PrivateScriptTest.h', 766 '<(bindings_core_v8_output_dir)/V8PrivateScriptTest.h',
760 '<(bindings_core_v8_output_dir)/V8TypeConversions.cpp', 767 '<(bindings_core_v8_output_dir)/V8TypeConversions.cpp',
761 '<(bindings_core_v8_output_dir)/V8TypeConversions.h', 768 '<(bindings_core_v8_output_dir)/V8TypeConversions.h',
762 '<(bindings_core_v8_output_dir)/V8Internals.cpp', 769 '<(bindings_core_v8_output_dir)/V8Internals.cpp',
763 '<(bindings_core_v8_output_dir)/V8Internals.h', 770 '<(bindings_core_v8_output_dir)/V8Internals.h',
764 '<(bindings_core_v8_output_dir)/V8InternalProfilers.cpp', 771 '<(bindings_core_v8_output_dir)/V8InternalProfilers.cpp',
765 '<(bindings_core_v8_output_dir)/V8InternalProfilers.h', 772 '<(bindings_core_v8_output_dir)/V8InternalProfilers.h',
766 '<(bindings_core_v8_output_dir)/V8InternalSettings.cpp', 773 '<(bindings_core_v8_output_dir)/V8InternalSettings.cpp',
767 '<(bindings_core_v8_output_dir)/V8InternalSettings.h', 774 '<(bindings_core_v8_output_dir)/V8InternalSettings.h',
768 '<(bindings_core_v8_output_dir)/V8InternalSettingsGenerated.cpp', 775 '<(bindings_core_v8_output_dir)/V8InternalSettingsGenerated.cpp',
769 '<(bindings_core_v8_output_dir)/V8InternalSettingsGenerated.h', 776 '<(bindings_core_v8_output_dir)/V8InternalSettingsGenerated.h',
770 '<(bindings_core_v8_output_dir)/V8InternalRuntimeFlags.cpp', 777 '<(bindings_core_v8_output_dir)/V8InternalRuntimeFlags.cpp',
771 '<(bindings_core_v8_output_dir)/V8InternalRuntimeFlags.h', 778 '<(bindings_core_v8_output_dir)/V8InternalRuntimeFlags.h',
772 '<(bindings_core_v8_output_dir)/V8LayerRect.cpp', 779 '<(bindings_core_v8_output_dir)/V8LayerRect.cpp',
773 '<(bindings_core_v8_output_dir)/V8LayerRect.h', 780 '<(bindings_core_v8_output_dir)/V8LayerRect.h',
774 '<(bindings_core_v8_output_dir)/V8LayerRectList.cpp', 781 '<(bindings_core_v8_output_dir)/V8LayerRectList.cpp',
775 '<(bindings_core_v8_output_dir)/V8LayerRectList.h', 782 '<(bindings_core_v8_output_dir)/V8LayerRectList.h',
776 '<(bindings_core_v8_output_dir)/V8RefCountedScriptWrappable.cpp', 783 '<(bindings_core_v8_output_dir)/V8RefCountedScriptWrappable.cpp',
777 '<(bindings_core_v8_output_dir)/V8RefCountedScriptWrappable.h', 784 '<(bindings_core_v8_output_dir)/V8RefCountedScriptWrappable.h',
785 '<(bindings_core_v8_output_dir)/V8TestingDictionary.cpp',
786 '<(bindings_core_v8_output_dir)/V8TestingDictionary.h',
778 ], 787 ],
779 'sources/': [ 788 'sources/': [
780 ['exclude', 'testing/js'], 789 ['exclude', 'testing/js'],
781 ], 790 ],
782 }, 791 },
783 ], # targets 792 ], # targets
784 } 793 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698