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

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, 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 3306 matching lines...) Expand 10 before | Expand all | Expand 10 after
3317 'svg/graphics/SVGImageForContainer.h', 3317 'svg/graphics/SVGImageForContainer.h',
3318 'svg/graphics/filters/SVGFEImage.cpp', 3318 'svg/graphics/filters/SVGFEImage.cpp',
3319 'svg/graphics/filters/SVGFEImage.h', 3319 'svg/graphics/filters/SVGFEImage.h',
3320 'svg/graphics/filters/SVGFilter.cpp', 3320 'svg/graphics/filters/SVGFilter.cpp',
3321 'svg/graphics/filters/SVGFilter.h', 3321 'svg/graphics/filters/SVGFilter.h',
3322 'svg/graphics/filters/SVGFilterBuilder.cpp', 3322 'svg/graphics/filters/SVGFilterBuilder.cpp',
3323 'svg/graphics/filters/SVGFilterBuilder.h', 3323 'svg/graphics/filters/SVGFilterBuilder.h',
3324 'svg/properties/SVGAnimatedProperty.cpp', 3324 'svg/properties/SVGAnimatedProperty.cpp',
3325 'svg/properties/SVGPropertyTearOff.cpp', 3325 'svg/properties/SVGPropertyTearOff.cpp',
3326 ], 3326 ],
3327 # FIXME: http://crbug.com/403150
3328 # Add 'core_dictionary_idl_files' and
3329 # 'generated_core_dictionary_files' variables.
3330 # The variables should contain IDL dictionary files and generated files
3331 # They would look like below:
3332 # 'core_dictionary_idl_files': [
3333 # 'css/FontFaceDescriptors.idl',
3334 # ],
3335 # 'generated_core_dictionary_files': [
3336 # '<(blink_core_output_dir)/css/FontFaceDescriptors.cpp',
3337 # '<(blink_core_output_dir)/css/FontFaceDescriptors.h',
3338 # ],
3339 'core_testing_dictionary_idl_files': [
3340 'testing/TestingDictionary.idl',
haraken 2014/08/27 08:37:39 Probably it's slightly better to rename testing/Te
bashi 2014/08/27 10:54:01 I'd like to avoid "Dictionary" because it sounds g
haraken 2014/08/27 10:54:45 InternalDictionary sounds good.
3341 ],
3327 'webcore_testing_idl_files': [ 3342 'webcore_testing_idl_files': [
3343 'testing/DictionaryTest.idl',
3328 'testing/GarbageCollectedScriptWrappable.idl', 3344 'testing/GarbageCollectedScriptWrappable.idl',
3329 'testing/GCObservation.idl', 3345 'testing/GCObservation.idl',
3330 'testing/InternalProfilers.idl', 3346 'testing/InternalProfilers.idl',
3331 'testing/InternalSettings.idl', 3347 'testing/InternalSettings.idl',
3332 'testing/Internals.idl', 3348 'testing/Internals.idl',
3333 'testing/LayerRect.idl', 3349 'testing/LayerRect.idl',
3334 'testing/LayerRectList.idl', 3350 'testing/LayerRectList.idl',
3335 'testing/PrivateScriptTest.idl', 3351 'testing/PrivateScriptTest.idl',
3336 'testing/RefCountedScriptWrappable.idl', 3352 'testing/RefCountedScriptWrappable.idl',
3337 'testing/TypeConversions.idl', 3353 'testing/TypeConversions.idl',
3338 ], 3354 ],
3339 'webcore_testing_dependency_idl_files': [ 3355 'webcore_testing_dependency_idl_files': [
3340 'testing/PartialPrivateScriptTest.idl', 3356 'testing/PartialPrivateScriptTest.idl',
3341 ], 3357 ],
3342 'generated_webcore_testing_idl_files': [ 3358 'generated_webcore_testing_idl_files': [
3343 '<(blink_core_output_dir)/InternalRuntimeFlags.idl', 3359 '<(blink_core_output_dir)/InternalRuntimeFlags.idl',
3344 '<(blink_core_output_dir)/InternalSettingsGenerated.idl', 3360 '<(blink_core_output_dir)/InternalSettingsGenerated.idl',
3345 ], 3361 ],
3362 'generated_core_testing_dictionary_files': [
3363 '<(blink_core_output_dir)/testing/TestingDictionary.cpp',
3364 '<(blink_core_output_dir)/testing/TestingDictionary.h',
3365 ],
3346 'webcore_testing_files': [ 3366 'webcore_testing_files': [
3347 '<(blink_core_output_dir)/InternalSettingsGenerated.cpp', 3367 '<(blink_core_output_dir)/InternalSettingsGenerated.cpp',
3348 '<(blink_core_output_dir)/InternalSettingsGenerated.h', 3368 '<(blink_core_output_dir)/InternalSettingsGenerated.h',
3369 'testing/DictionaryTest.cpp',
3370 'testing/DictionaryTest.h',
3349 'testing/DummyPageHolder.cpp', 3371 'testing/DummyPageHolder.cpp',
3350 'testing/DummyPageHolder.h', 3372 'testing/DummyPageHolder.h',
3351 'testing/GarbageCollectedScriptWrappable.cpp', 3373 'testing/GarbageCollectedScriptWrappable.cpp',
3352 'testing/GarbageCollectedScriptWrappable.h', 3374 'testing/GarbageCollectedScriptWrappable.h',
3353 'testing/GCObservation.cpp', 3375 'testing/GCObservation.cpp',
3354 'testing/GCObservation.h', 3376 'testing/GCObservation.h',
3355 'testing/InternalProfilers.cpp', 3377 'testing/InternalProfilers.cpp',
3356 'testing/InternalProfilers.h', 3378 'testing/InternalProfilers.h',
3357 'testing/InternalSettings.cpp', 3379 'testing/InternalSettings.cpp',
3358 'testing/InternalSettings.h', 3380 'testing/InternalSettings.h',
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
3468 'rendering/shapes/BoxShapeTest.cpp', 3490 'rendering/shapes/BoxShapeTest.cpp',
3469 'rendering/style/OutlineValueTest.cpp', 3491 'rendering/style/OutlineValueTest.cpp',
3470 'testing/PrivateScriptTestTest.cpp', 3492 'testing/PrivateScriptTestTest.cpp',
3471 'streams/ReadableStreamTest.cpp', 3493 'streams/ReadableStreamTest.cpp',
3472 'testing/UnitTestHelpers.cpp', 3494 'testing/UnitTestHelpers.cpp',
3473 'testing/UnitTestHelpers.h', 3495 'testing/UnitTestHelpers.h',
3474 'xml/parser/SharedBufferReaderTest.cpp', 3496 'xml/parser/SharedBufferReaderTest.cpp',
3475 ], 3497 ],
3476 } 3498 }
3477 } 3499 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698