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

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 3633 matching lines...) Expand 10 before | Expand all | Expand 10 after
3644 ], 3644 ],
3645 'webcore_test_support_idl_files': [ 3645 'webcore_test_support_idl_files': [
3646 'testing/GCObservation.idl', 3646 'testing/GCObservation.idl',
3647 'testing/Internals.idl', 3647 'testing/Internals.idl',
3648 'testing/InternalProfilers.idl', 3648 'testing/InternalProfilers.idl',
3649 'testing/InternalSettings.idl', 3649 'testing/InternalSettings.idl',
3650 'testing/LayerRect.idl', 3650 'testing/LayerRect.idl',
3651 'testing/LayerRectList.idl', 3651 'testing/LayerRectList.idl',
3652 'testing/MallocStatistics.idl', 3652 'testing/MallocStatistics.idl',
3653 'testing/TypeConversions.idl', 3653 'testing/TypeConversions.idl',
3654 ],
3655 'generated_webcore_test_support_idl_files': [
3654 '<(SHARED_INTERMEDIATE_DIR)/blink/InternalSettingsGenerated.idl', 3656 '<(SHARED_INTERMEDIATE_DIR)/blink/InternalSettingsGenerated.idl',
3655 '<(SHARED_INTERMEDIATE_DIR)/blink/InternalRuntimeFlags.idl', 3657 '<(SHARED_INTERMEDIATE_DIR)/blink/InternalRuntimeFlags.idl',
3656 ], 3658 ],
3657 'webcore_test_support_files': [ 3659 'webcore_test_support_files': [
3658 'testing/v8/WebCoreTestSupport.cpp', 3660 'testing/v8/WebCoreTestSupport.cpp',
3659 'testing/v8/WebCoreTestSupport.h', 3661 'testing/v8/WebCoreTestSupport.h',
3660 'testing/GCObservation.cpp', 3662 'testing/GCObservation.cpp',
3661 'testing/GCObservation.h', 3663 'testing/GCObservation.h',
3662 'testing/InspectorFrontendClientLocal.cpp', 3664 'testing/InspectorFrontendClientLocal.cpp',
3663 'testing/InspectorFrontendClientLocal.h', 3665 'testing/InspectorFrontendClientLocal.h',
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
3803 'bison_exe': 'bison', 3805 'bison_exe': 'bison',
3804 # We specify a preprocess so it happens locally and won't get 3806 # We specify a preprocess so it happens locally and won't get
3805 # distributed to goma. 3807 # distributed to goma.
3806 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to 3808 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to
3807 # use /usr/bin/clang once we require Xcode 4.x. 3809 # use /usr/bin/clang once we require Xcode 4.x.
3808 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"' 3810 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"'
3809 }], 3811 }],
3810 ], 3812 ],
3811 } 3813 }
3812 } 3814 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698