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

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

Issue 18478003: Vibration cannot be canceled during pattern vibration. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Vibration cannot be canceled during pattern vibration. Created 7 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 'variables': { 2 'variables': {
3 'deprecated_perl_core_idl_files': [ 3 'deprecated_perl_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/CSSMediaRule.idl', 10 'css/CSSMediaRule.idl',
(...skipping 3623 matching lines...) Expand 10 before | Expand all | Expand 10 after
3634 'svg/graphics/filters/SVGFilter.cpp', 3634 'svg/graphics/filters/SVGFilter.cpp',
3635 'svg/graphics/filters/SVGFilter.h', 3635 'svg/graphics/filters/SVGFilter.h',
3636 'svg/graphics/filters/SVGFilterBuilder.cpp', 3636 'svg/graphics/filters/SVGFilterBuilder.cpp',
3637 'svg/graphics/filters/SVGFilterBuilder.h', 3637 'svg/graphics/filters/SVGFilterBuilder.h',
3638 'svg/properties/SVGAnimatedProperty.cpp', 3638 'svg/properties/SVGAnimatedProperty.cpp',
3639 'svg/properties/SVGAnimatedProperty.h', 3639 'svg/properties/SVGAnimatedProperty.h',
3640 'svg/properties/SVGAttributeToPropertyMap.cpp', 3640 'svg/properties/SVGAttributeToPropertyMap.cpp',
3641 'svg/properties/SVGAnimatedPathSegListPropertyTearOff.h', 3641 'svg/properties/SVGAnimatedPathSegListPropertyTearOff.h',
3642 'svg/properties/SVGPathSegListPropertyTearOff.cpp', 3642 'svg/properties/SVGPathSegListPropertyTearOff.cpp',
3643 ], 3643 ],
3644 'internals_test_support_idl_file': [
tkent 2013/08/28 03:58:07 Why do you add new variable for Internals.idl?
kihong 2013/08/28 05:25:25 "internals.idl" need to be included to 'interface_
3645 'testing/Internals.idl',
3646 ],
3644 'deprecated_perl_webcore_test_support_idl_files': [ 3647 'deprecated_perl_webcore_test_support_idl_files': [
3645 'testing/GCObservation.idl', 3648 'testing/GCObservation.idl',
3646 'testing/Internals.idl',
3647 'testing/InternalProfilers.idl', 3649 'testing/InternalProfilers.idl',
3648 'testing/InternalSettings.idl', 3650 'testing/InternalSettings.idl',
3649 'testing/LayerRect.idl', 3651 'testing/LayerRect.idl',
3650 'testing/LayerRectList.idl', 3652 'testing/LayerRectList.idl',
3651 'testing/MallocStatistics.idl', 3653 'testing/MallocStatistics.idl',
3652 'testing/TypeConversions.idl', 3654 'testing/TypeConversions.idl',
3653 '<(SHARED_INTERMEDIATE_DIR)/blink/InternalSettingsGenerated.idl', 3655 '<(SHARED_INTERMEDIATE_DIR)/blink/InternalSettingsGenerated.idl',
3654 '<(SHARED_INTERMEDIATE_DIR)/blink/InternalRuntimeFlags.idl', 3656 '<(SHARED_INTERMEDIATE_DIR)/blink/InternalRuntimeFlags.idl',
3655 ], 3657 ],
3656 'python_webcore_test_support_idl_files': [ 3658 'python_webcore_test_support_idl_files': [
(...skipping 146 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