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

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

Issue 1248643004: Test distillability without JavaScript (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@early
Patch Set: fix browsertest, merge webkit CL, merge http://crrev.com/1403413004 Created 5 years, 1 month 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/KeyframeEffect.idl', 8 'animation/KeyframeEffect.idl',
9 'animation/EffectModel.idl', 9 'animation/EffectModel.idl',
10 'animation/AnimationEffectReadOnly.idl', 10 'animation/AnimationEffectReadOnly.idl',
(...skipping 2298 matching lines...) Expand 10 before | Expand all | Expand 10 after
2309 'dom/DocumentInit.h', 2309 'dom/DocumentInit.h',
2310 'dom/DocumentLifecycle.cpp', 2310 'dom/DocumentLifecycle.cpp',
2311 'dom/DocumentLifecycle.h', 2311 'dom/DocumentLifecycle.h',
2312 'dom/DocumentLifecycleNotifier.cpp', 2312 'dom/DocumentLifecycleNotifier.cpp',
2313 'dom/DocumentLifecycleNotifier.h', 2313 'dom/DocumentLifecycleNotifier.h',
2314 'dom/DocumentLifecycleObserver.h', 2314 'dom/DocumentLifecycleObserver.h',
2315 'dom/DocumentOrderedList.cpp', 2315 'dom/DocumentOrderedList.cpp',
2316 'dom/DocumentOrderedList.h', 2316 'dom/DocumentOrderedList.h',
2317 'dom/DocumentOrderedMap.cpp', 2317 'dom/DocumentOrderedMap.cpp',
2318 'dom/DocumentParser.cpp', 2318 'dom/DocumentParser.cpp',
2319 'dom/DocumentStatisticsCollector.cpp',
2320 'dom/DocumentStatisticsCollector.h',
2319 'dom/DocumentStyleSheetCollection.cpp', 2321 'dom/DocumentStyleSheetCollection.cpp',
2320 'dom/DocumentStyleSheetCollection.h', 2322 'dom/DocumentStyleSheetCollection.h',
2321 'dom/DocumentStyleSheetCollector.cpp', 2323 'dom/DocumentStyleSheetCollector.cpp',
2322 'dom/DocumentStyleSheetCollector.h', 2324 'dom/DocumentStyleSheetCollector.h',
2323 'dom/DocumentTiming.cpp', 2325 'dom/DocumentTiming.cpp',
2324 'dom/DocumentTiming.h', 2326 'dom/DocumentTiming.h',
2325 'dom/DocumentType.cpp', 2327 'dom/DocumentType.cpp',
2326 'dom/DocumentVisibilityObserver.cpp', 2328 'dom/DocumentVisibilityObserver.cpp',
2327 'dom/Element.cpp', 2329 'dom/Element.cpp',
2328 'dom/Element.h', 2330 'dom/Element.h',
(...skipping 1462 matching lines...) Expand 10 before | Expand all | Expand 10 after
3791 'css/parser/CSSTokenizerTest.cpp', 3793 'css/parser/CSSTokenizerTest.cpp',
3792 'css/parser/MediaConditionTest.cpp', 3794 'css/parser/MediaConditionTest.cpp',
3793 'css/parser/SizesAttributeParserTest.cpp', 3795 'css/parser/SizesAttributeParserTest.cpp',
3794 'css/parser/SizesCalcParserTest.cpp', 3796 'css/parser/SizesCalcParserTest.cpp',
3795 'css/resolver/FontBuilderTest.cpp', 3797 'css/resolver/FontBuilderTest.cpp',
3796 'css/resolver/MatchResultTest.cpp', 3798 'css/resolver/MatchResultTest.cpp',
3797 'dom/ActiveDOMObjectTest.cpp', 3799 'dom/ActiveDOMObjectTest.cpp',
3798 'dom/AttrTest.cpp', 3800 'dom/AttrTest.cpp',
3799 'dom/CrossThreadTaskTest.cpp', 3801 'dom/CrossThreadTaskTest.cpp',
3800 'dom/DOMImplementationTest.cpp', 3802 'dom/DOMImplementationTest.cpp',
3803 'dom/DocumentStatisticsCollectorTest.cpp',
3801 'dom/DocumentTest.cpp', 3804 'dom/DocumentTest.cpp',
3802 'dom/MainThreadTaskRunnerTest.cpp', 3805 'dom/MainThreadTaskRunnerTest.cpp',
3803 'dom/NthIndexCacheTest.cpp', 3806 'dom/NthIndexCacheTest.cpp',
3804 'dom/RangeTest.cpp', 3807 'dom/RangeTest.cpp',
3805 'dom/ScriptRunnerTest.cpp', 3808 'dom/ScriptRunnerTest.cpp',
3806 'dom/StyleElementTest.cpp', 3809 'dom/StyleElementTest.cpp',
3807 'dom/TreeScopeStyleSheetCollectionTest.cpp', 3810 'dom/TreeScopeStyleSheetCollectionTest.cpp',
3808 'dom/TreeScopeTest.cpp', 3811 'dom/TreeScopeTest.cpp',
3809 'dom/shadow/ComposedTreeTraversalTest.cpp', 3812 'dom/shadow/ComposedTreeTraversalTest.cpp',
3810 'editing/EditingStrategyTest.cpp', 3813 'editing/EditingStrategyTest.cpp',
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
3907 'style/OutlineValueTest.cpp', 3910 'style/OutlineValueTest.cpp',
3908 'style/SVGComputedStyleTest.cpp', 3911 'style/SVGComputedStyleTest.cpp',
3909 'svg/UnsafeSVGAttributeSanitizationTest.cpp', 3912 'svg/UnsafeSVGAttributeSanitizationTest.cpp',
3910 'testing/PrivateScriptTestTest.cpp', 3913 'testing/PrivateScriptTestTest.cpp',
3911 'timing/MemoryInfoTest.cpp', 3914 'timing/MemoryInfoTest.cpp',
3912 'workers/WorkerThreadTest.cpp', 3915 'workers/WorkerThreadTest.cpp',
3913 'xml/parser/SharedBufferReaderTest.cpp', 3916 'xml/parser/SharedBufferReaderTest.cpp',
3914 ], 3917 ],
3915 } 3918 }
3916 } 3919 }
OLDNEW
« no previous file with comments | « ipc/ipc_message_start.h ('k') | third_party/WebKit/Source/core/dom/DocumentStatisticsCollector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698