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

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

Issue 17471008: Rework compositor touch hit testing (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Various fixes and test additions Created 7 years, 5 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/CSSMediaRule.idl', 10 'css/CSSMediaRule.idl',
(...skipping 3583 matching lines...) Expand 10 before | Expand all | Expand 10 after
3594 'svg/graphics/filters/SVGFilterBuilder.cpp', 3594 'svg/graphics/filters/SVGFilterBuilder.cpp',
3595 'svg/graphics/filters/SVGFilterBuilder.h', 3595 'svg/graphics/filters/SVGFilterBuilder.h',
3596 'svg/properties/SVGAttributeToPropertyMap.cpp', 3596 'svg/properties/SVGAttributeToPropertyMap.cpp',
3597 'svg/properties/SVGAnimatedPathSegListPropertyTearOff.h', 3597 'svg/properties/SVGAnimatedPathSegListPropertyTearOff.h',
3598 'svg/properties/SVGPathSegListPropertyTearOff.cpp', 3598 'svg/properties/SVGPathSegListPropertyTearOff.cpp',
3599 ], 3599 ],
3600 'webcore_test_support_idl_files': [ 3600 'webcore_test_support_idl_files': [
3601 'testing/Internals.idl', 3601 'testing/Internals.idl',
3602 'testing/InternalProfilers.idl', 3602 'testing/InternalProfilers.idl',
3603 'testing/InternalSettings.idl', 3603 'testing/InternalSettings.idl',
3604 'testing/LayerRect.idl',
3605 'testing/LayerRectList.idl',
3604 'testing/MallocStatistics.idl', 3606 'testing/MallocStatistics.idl',
3605 'testing/TypeConversions.idl', 3607 'testing/TypeConversions.idl',
3606 '<(SHARED_INTERMEDIATE_DIR)/webkit/InternalSettingsGenerated.idl', 3608 '<(SHARED_INTERMEDIATE_DIR)/webkit/InternalSettingsGenerated.idl',
3607 '<(SHARED_INTERMEDIATE_DIR)/webkit/InternalRuntimeFlags.idl', 3609 '<(SHARED_INTERMEDIATE_DIR)/webkit/InternalRuntimeFlags.idl',
3608 ], 3610 ],
3609 'webcore_test_support_files': [ 3611 'webcore_test_support_files': [
3610 'testing/v8/WebCoreTestSupport.cpp', 3612 'testing/v8/WebCoreTestSupport.cpp',
3611 'testing/v8/WebCoreTestSupport.h', 3613 'testing/v8/WebCoreTestSupport.h',
3612 'testing/InspectorFrontendClientLocal.cpp', 3614 'testing/InspectorFrontendClientLocal.cpp',
3613 'testing/InspectorFrontendClientLocal.h', 3615 'testing/InspectorFrontendClientLocal.h',
3614 'testing/Internals.cpp', 3616 'testing/Internals.cpp',
3615 'testing/Internals.h', 3617 'testing/Internals.h',
3616 'testing/InternalProfilers.cpp', 3618 'testing/InternalProfilers.cpp',
3617 'testing/InternalProfilers.h', 3619 'testing/InternalProfilers.h',
3618 'testing/InternalSettings.cpp', 3620 'testing/InternalSettings.cpp',
3619 'testing/InternalSettings.h', 3621 'testing/InternalSettings.h',
3622 'testing/LayerRect.h',
3623 'testing/LayerRectList.cpp',
3624 'testing/LayerRectList.h',
3620 'testing/MallocStatistics.h', 3625 'testing/MallocStatistics.h',
3621 'testing/MockPagePopupDriver.cpp', 3626 'testing/MockPagePopupDriver.cpp',
3622 'testing/MockPagePopupDriver.h', 3627 'testing/MockPagePopupDriver.h',
3623 'testing/TypeConversions.h', 3628 'testing/TypeConversions.h',
3624 '<(SHARED_INTERMEDIATE_DIR)/webkit/InternalSettingsGenerated.cpp', 3629 '<(SHARED_INTERMEDIATE_DIR)/webkit/InternalSettingsGenerated.cpp',
3625 '<(SHARED_INTERMEDIATE_DIR)/webkit/InternalSettingsGenerated.h', 3630 '<(SHARED_INTERMEDIATE_DIR)/webkit/InternalSettingsGenerated.h',
3626 ], 3631 ],
3627 'webcore_platform_support_files': [ 3632 'webcore_platform_support_files': [
3628 'platform/chromium/support/Platform.cpp', 3633 'platform/chromium/support/Platform.cpp',
3629 'platform/chromium/support/WebActiveGestureAnimation.cpp', 3634 'platform/chromium/support/WebActiveGestureAnimation.cpp',
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
3724 'bison_exe': 'bison', 3729 'bison_exe': 'bison',
3725 # We specify a preprocess so it happens locally and won't get 3730 # We specify a preprocess so it happens locally and won't get
3726 # distributed to goma. 3731 # distributed to goma.
3727 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to 3732 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to
3728 # use /usr/bin/clang once we require Xcode 4.x. 3733 # use /usr/bin/clang once we require Xcode 4.x.
3729 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"' 3734 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"'
3730 }], 3735 }],
3731 ], 3736 ],
3732 } 3737 }
3733 } 3738 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698