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

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

Issue 24053003: Support partial interface for test support idls (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch Created 7 years, 2 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 'variables': { 2 'variables': {
3 'core_idl_files': [ 3 'core_idl_files': [
4 'css/CSS.idl', 4 'css/CSS.idl',
5 'css/CSSCharsetRule.idl', 5 'css/CSSCharsetRule.idl',
6 'css/CSSFontFaceLoadEvent.idl', 6 'css/CSSFontFaceLoadEvent.idl',
7 'css/CSSFontFaceRule.idl', 7 'css/CSSFontFaceRule.idl',
8 'css/CSSHostRule.idl', 8 'css/CSSHostRule.idl',
9 'css/CSSImportRule.idl', 9 'css/CSSImportRule.idl',
10 'css/CSSKeyframeRule.idl', 10 'css/CSSKeyframeRule.idl',
(...skipping 3489 matching lines...) Expand 10 before | Expand all | Expand 10 after
3500 ], 3500 ],
3501 'webcore_test_support_idl_files': [ 3501 'webcore_test_support_idl_files': [
3502 'testing/GCObservation.idl', 3502 'testing/GCObservation.idl',
3503 'testing/Internals.idl', 3503 'testing/Internals.idl',
3504 'testing/InternalProfilers.idl', 3504 'testing/InternalProfilers.idl',
3505 'testing/InternalSettings.idl', 3505 'testing/InternalSettings.idl',
3506 'testing/LayerRect.idl', 3506 'testing/LayerRect.idl',
3507 'testing/LayerRectList.idl', 3507 'testing/LayerRectList.idl',
3508 'testing/MallocStatistics.idl', 3508 'testing/MallocStatistics.idl',
3509 'testing/TypeConversions.idl', 3509 'testing/TypeConversions.idl',
3510 ],
3511 'generated_webcore_test_support_idl_files': [
3510 '<(SHARED_INTERMEDIATE_DIR)/blink/InternalSettingsGenerated.idl', 3512 '<(SHARED_INTERMEDIATE_DIR)/blink/InternalSettingsGenerated.idl',
3511 '<(SHARED_INTERMEDIATE_DIR)/blink/InternalRuntimeFlags.idl', 3513 '<(SHARED_INTERMEDIATE_DIR)/blink/InternalRuntimeFlags.idl',
3512 ], 3514 ],
3513 'webcore_test_support_files': [ 3515 'webcore_test_support_files': [
3514 'testing/v8/WebCoreTestSupport.cpp', 3516 'testing/v8/WebCoreTestSupport.cpp',
3515 'testing/v8/WebCoreTestSupport.h', 3517 'testing/v8/WebCoreTestSupport.h',
3516 'testing/GCObservation.cpp', 3518 'testing/GCObservation.cpp',
3517 'testing/GCObservation.h', 3519 'testing/GCObservation.h',
3518 'testing/InspectorFrontendClientLocal.cpp', 3520 'testing/InspectorFrontendClientLocal.cpp',
3519 'testing/InspectorFrontendClientLocal.h', 3521 'testing/InspectorFrontendClientLocal.h',
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
3656 'bison_exe': 'bison', 3658 'bison_exe': 'bison',
3657 # We specify a preprocess so it happens locally and won't get 3659 # We specify a preprocess so it happens locally and won't get
3658 # distributed to goma. 3660 # distributed to goma.
3659 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to 3661 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to
3660 # use /usr/bin/clang once we require Xcode 4.x. 3662 # use /usr/bin/clang once we require Xcode 4.x.
3661 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"' 3663 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"'
3662 }], 3664 }],
3663 ], 3665 ],
3664 } 3666 }
3665 } 3667 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698