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

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

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 'includes': [ 2 'includes': [
3 'core_generated.gypi', 3 'core_generated.gypi',
4 ], 4 ],
5 'variables': { 5 'variables': {
6 # Files for which bindings (.cpp and .h files) will be generated 6 # Files for which bindings (.cpp and .h files) will be generated
7 'core_idl_files': [ 7 'core_idl_files': [
8 'animation/Animation.idl', 8 'animation/Animation.idl',
9 'animation/AnimationEffect.idl', 9 'animation/AnimationEffect.idl',
10 'animation/AnimationPlayer.idl', 10 'animation/AnimationPlayer.idl',
(...skipping 3307 matching lines...) Expand 10 before | Expand all | Expand 10 after
3318 'svg/graphics/SVGImageForContainer.h', 3318 'svg/graphics/SVGImageForContainer.h',
3319 'svg/graphics/filters/SVGFEImage.cpp', 3319 'svg/graphics/filters/SVGFEImage.cpp',
3320 'svg/graphics/filters/SVGFEImage.h', 3320 'svg/graphics/filters/SVGFEImage.h',
3321 'svg/graphics/filters/SVGFilter.cpp', 3321 'svg/graphics/filters/SVGFilter.cpp',
3322 'svg/graphics/filters/SVGFilter.h', 3322 'svg/graphics/filters/SVGFilter.h',
3323 'svg/graphics/filters/SVGFilterBuilder.cpp', 3323 'svg/graphics/filters/SVGFilterBuilder.cpp',
3324 'svg/graphics/filters/SVGFilterBuilder.h', 3324 'svg/graphics/filters/SVGFilterBuilder.h',
3325 'svg/properties/SVGAnimatedProperty.cpp', 3325 'svg/properties/SVGAnimatedProperty.cpp',
3326 'svg/properties/SVGPropertyTearOff.cpp', 3326 'svg/properties/SVGPropertyTearOff.cpp',
3327 ], 3327 ],
3328 # FIXME: http://crbug.com/403150
3329 # Add 'core_dictionary_idl_files' and
3330 # 'generated_core_dictionary_files' variables.
3331 # The variables should contain IDL dictionary files and generated files
3332 # They would look like below:
3333 # 'core_dictionary_idl_files': [
3334 # 'css/FontFaceDescriptors.idl',
3335 # ],
3336 # 'generated_core_dictionary_files': [
3337 # '<(blink_core_output_dir)/css/FontFaceDescriptors.cpp',
3338 # '<(blink_core_output_dir)/css/FontFaceDescriptors.h',
3339 # ],
3340 'core_testing_dictionary_idl_files': [
3341 'testing/TestingDictionary.idl',
3342 ],
3328 'webcore_testing_idl_files': [ 3343 'webcore_testing_idl_files': [
3344 'testing/DictionaryTest.idl',
3329 'testing/GarbageCollectedScriptWrappable.idl', 3345 'testing/GarbageCollectedScriptWrappable.idl',
3330 'testing/GCObservation.idl', 3346 'testing/GCObservation.idl',
3331 'testing/InternalProfilers.idl', 3347 'testing/InternalProfilers.idl',
3332 'testing/InternalSettings.idl', 3348 'testing/InternalSettings.idl',
3333 'testing/Internals.idl', 3349 'testing/Internals.idl',
3334 'testing/LayerRect.idl', 3350 'testing/LayerRect.idl',
3335 'testing/LayerRectList.idl', 3351 'testing/LayerRectList.idl',
3336 'testing/PrivateScriptTest.idl', 3352 'testing/PrivateScriptTest.idl',
3337 'testing/RefCountedScriptWrappable.idl', 3353 'testing/RefCountedScriptWrappable.idl',
3338 'testing/TypeConversions.idl', 3354 'testing/TypeConversions.idl',
3339 ], 3355 ],
3340 'webcore_testing_dependency_idl_files': [ 3356 'webcore_testing_dependency_idl_files': [
3341 'testing/PartialPrivateScriptTest.idl', 3357 'testing/PartialPrivateScriptTest.idl',
3342 ], 3358 ],
3343 'generated_webcore_testing_idl_files': [ 3359 'generated_webcore_testing_idl_files': [
3344 '<(blink_core_output_dir)/InternalRuntimeFlags.idl', 3360 '<(blink_core_output_dir)/InternalRuntimeFlags.idl',
3345 '<(blink_core_output_dir)/InternalSettingsGenerated.idl', 3361 '<(blink_core_output_dir)/InternalSettingsGenerated.idl',
3346 ], 3362 ],
3363 'generated_core_testing_dictionary_files': [
3364 '<(blink_core_output_dir)/testing/TestingDictionary.cpp',
3365 '<(blink_core_output_dir)/testing/TestingDictionary.h',
3366 ],
3347 'webcore_testing_files': [ 3367 'webcore_testing_files': [
3368 '<@(generated_core_testing_dictionary_files)',
brettw 2014/08/14 22:26:29 Unless I'm misunderstanding something, I'm surpris
bashi 2014/08/15 00:14:54 Thank you for the detailed explanation! I removed
3348 '<(blink_core_output_dir)/InternalSettingsGenerated.cpp', 3369 '<(blink_core_output_dir)/InternalSettingsGenerated.cpp',
3349 '<(blink_core_output_dir)/InternalSettingsGenerated.h', 3370 '<(blink_core_output_dir)/InternalSettingsGenerated.h',
3371 'testing/DictionaryTest.cpp',
3372 'testing/DictionaryTest.h',
3350 'testing/DummyPageHolder.cpp', 3373 'testing/DummyPageHolder.cpp',
3351 'testing/DummyPageHolder.h', 3374 'testing/DummyPageHolder.h',
3352 'testing/GarbageCollectedScriptWrappable.cpp', 3375 'testing/GarbageCollectedScriptWrappable.cpp',
3353 'testing/GarbageCollectedScriptWrappable.h', 3376 'testing/GarbageCollectedScriptWrappable.h',
3354 'testing/GCObservation.cpp', 3377 'testing/GCObservation.cpp',
3355 'testing/GCObservation.h', 3378 'testing/GCObservation.h',
3356 'testing/InternalProfilers.cpp', 3379 'testing/InternalProfilers.cpp',
3357 'testing/InternalProfilers.h', 3380 'testing/InternalProfilers.h',
3358 'testing/InternalSettings.cpp', 3381 'testing/InternalSettings.cpp',
3359 'testing/InternalSettings.h', 3382 'testing/InternalSettings.h',
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
3466 'rendering/shapes/BoxShapeTest.cpp', 3489 'rendering/shapes/BoxShapeTest.cpp',
3467 'rendering/style/OutlineValueTest.cpp', 3490 'rendering/style/OutlineValueTest.cpp',
3468 'testing/PrivateScriptTestTest.cpp', 3491 'testing/PrivateScriptTestTest.cpp',
3469 'streams/ReadableStreamTest.cpp', 3492 'streams/ReadableStreamTest.cpp',
3470 'testing/UnitTestHelpers.cpp', 3493 'testing/UnitTestHelpers.cpp',
3471 'testing/UnitTestHelpers.h', 3494 'testing/UnitTestHelpers.h',
3472 'xml/parser/SharedBufferReaderTest.cpp', 3495 'xml/parser/SharedBufferReaderTest.cpp',
3473 ], 3496 ],
3474 } 3497 }
3475 } 3498 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698