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

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: rebase Created 6 years, 3 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 3304 matching lines...) Expand 10 before | Expand all | Expand 10 after
3315 'svg/graphics/SVGImageForContainer.h', 3315 'svg/graphics/SVGImageForContainer.h',
3316 'svg/graphics/filters/SVGFEImage.cpp', 3316 'svg/graphics/filters/SVGFEImage.cpp',
3317 'svg/graphics/filters/SVGFEImage.h', 3317 'svg/graphics/filters/SVGFEImage.h',
3318 'svg/graphics/filters/SVGFilter.cpp', 3318 'svg/graphics/filters/SVGFilter.cpp',
3319 'svg/graphics/filters/SVGFilter.h', 3319 'svg/graphics/filters/SVGFilter.h',
3320 'svg/graphics/filters/SVGFilterBuilder.cpp', 3320 'svg/graphics/filters/SVGFilterBuilder.cpp',
3321 'svg/graphics/filters/SVGFilterBuilder.h', 3321 'svg/graphics/filters/SVGFilterBuilder.h',
3322 'svg/properties/SVGAnimatedProperty.cpp', 3322 'svg/properties/SVGAnimatedProperty.cpp',
3323 'svg/properties/SVGPropertyTearOff.cpp', 3323 'svg/properties/SVGPropertyTearOff.cpp',
3324 ], 3324 ],
3325 # FIXME: http://crbug.com/403150
3326 # Add 'core_dictionary_idl_files' and
3327 # 'generated_core_dictionary_files' variables.
3328 # The variables should contain IDL dictionary files and generated files
3329 # They would look like below:
3330 # 'core_dictionary_idl_files': [
3331 # 'css/FontFaceDescriptors.idl',
3332 # ],
3333 # 'generated_core_dictionary_files': [
3334 # '<(blink_core_output_dir)/css/FontFaceDescriptors.cpp',
3335 # '<(blink_core_output_dir)/css/FontFaceDescriptors.h',
3336 # ],
3337 'core_testing_dictionary_idl_files': [
3338 'testing/TestingDictionary.idl',
3339 ],
3325 'webcore_testing_idl_files': [ 3340 'webcore_testing_idl_files': [
3341 'testing/DictionaryTest.idl',
3326 'testing/GarbageCollectedScriptWrappable.idl', 3342 'testing/GarbageCollectedScriptWrappable.idl',
3327 'testing/GCObservation.idl', 3343 'testing/GCObservation.idl',
3328 'testing/InternalProfilers.idl', 3344 'testing/InternalProfilers.idl',
3329 'testing/InternalSettings.idl', 3345 'testing/InternalSettings.idl',
3330 'testing/Internals.idl', 3346 'testing/Internals.idl',
3331 'testing/LayerRect.idl', 3347 'testing/LayerRect.idl',
3332 'testing/LayerRectList.idl', 3348 'testing/LayerRectList.idl',
3333 'testing/PrivateScriptTest.idl', 3349 'testing/PrivateScriptTest.idl',
3334 'testing/RefCountedScriptWrappable.idl', 3350 'testing/RefCountedScriptWrappable.idl',
3335 'testing/TypeConversions.idl', 3351 'testing/TypeConversions.idl',
3336 ], 3352 ],
3337 'webcore_testing_dependency_idl_files': [ 3353 'webcore_testing_dependency_idl_files': [
3338 'testing/PartialPrivateScriptTest.idl', 3354 'testing/PartialPrivateScriptTest.idl',
3339 ], 3355 ],
3340 'generated_webcore_testing_idl_files': [ 3356 'generated_webcore_testing_idl_files': [
3341 '<(blink_core_output_dir)/InternalRuntimeFlags.idl', 3357 '<(blink_core_output_dir)/InternalRuntimeFlags.idl',
3342 '<(blink_core_output_dir)/InternalSettingsGenerated.idl', 3358 '<(blink_core_output_dir)/InternalSettingsGenerated.idl',
3343 ], 3359 ],
3360 'generated_core_testing_dictionary_files': [
3361 '<(blink_core_output_dir)/testing/TestingDictionary.cpp',
3362 '<(blink_core_output_dir)/testing/TestingDictionary.h',
3363 ],
3344 'webcore_testing_files': [ 3364 'webcore_testing_files': [
3345 '<(blink_core_output_dir)/InternalSettingsGenerated.cpp', 3365 '<(blink_core_output_dir)/InternalSettingsGenerated.cpp',
3346 '<(blink_core_output_dir)/InternalSettingsGenerated.h', 3366 '<(blink_core_output_dir)/InternalSettingsGenerated.h',
3367 'testing/DictionaryTest.cpp',
3368 'testing/DictionaryTest.h',
3347 'testing/DummyPageHolder.cpp', 3369 'testing/DummyPageHolder.cpp',
3348 'testing/DummyPageHolder.h', 3370 'testing/DummyPageHolder.h',
3349 'testing/GarbageCollectedScriptWrappable.cpp', 3371 'testing/GarbageCollectedScriptWrappable.cpp',
3350 'testing/GarbageCollectedScriptWrappable.h', 3372 'testing/GarbageCollectedScriptWrappable.h',
3351 'testing/GCObservation.cpp', 3373 'testing/GCObservation.cpp',
3352 'testing/GCObservation.h', 3374 'testing/GCObservation.h',
3353 'testing/InternalProfilers.cpp', 3375 'testing/InternalProfilers.cpp',
3354 'testing/InternalProfilers.h', 3376 'testing/InternalProfilers.h',
3355 'testing/InternalSettings.cpp', 3377 'testing/InternalSettings.cpp',
3356 'testing/InternalSettings.h', 3378 'testing/InternalSettings.h',
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
3466 'rendering/shapes/BoxShapeTest.cpp', 3488 'rendering/shapes/BoxShapeTest.cpp',
3467 'rendering/style/OutlineValueTest.cpp', 3489 'rendering/style/OutlineValueTest.cpp',
3468 'testing/PrivateScriptTestTest.cpp', 3490 'testing/PrivateScriptTestTest.cpp',
3469 'streams/ReadableStreamTest.cpp', 3491 'streams/ReadableStreamTest.cpp',
3470 'testing/UnitTestHelpers.cpp', 3492 'testing/UnitTestHelpers.cpp',
3471 'testing/UnitTestHelpers.h', 3493 'testing/UnitTestHelpers.h',
3472 'xml/parser/SharedBufferReaderTest.cpp', 3494 'xml/parser/SharedBufferReaderTest.cpp',
3473 ], 3495 ],
3474 } 3496 }
3475 } 3497 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698