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

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

Issue 1915373002: Implement empty WorkerInternals interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@trials-in-service-workers
Patch Set: nit Created 4 years, 7 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 '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 3825 matching lines...) Expand 10 before | Expand all | Expand 10 after
3836 'webcore_testing_idl_files': [ 3836 'webcore_testing_idl_files': [
3837 'testing/DictionaryTest.idl', 3837 'testing/DictionaryTest.idl',
3838 'testing/GCObservation.idl', 3838 'testing/GCObservation.idl',
3839 'testing/GarbageCollectedScriptWrappable.idl', 3839 'testing/GarbageCollectedScriptWrappable.idl',
3840 'testing/InternalSettings.idl', 3840 'testing/InternalSettings.idl',
3841 'testing/LayerRect.idl', 3841 'testing/LayerRect.idl',
3842 'testing/LayerRectList.idl', 3842 'testing/LayerRectList.idl',
3843 'testing/PrivateScriptTest.idl', 3843 'testing/PrivateScriptTest.idl',
3844 'testing/TypeConversions.idl', 3844 'testing/TypeConversions.idl',
3845 'testing/UnionTypesTest.idl', 3845 'testing/UnionTypesTest.idl',
3846 'testing/WorkerInternals.idl',
3846 ], 3847 ],
3847 # testing IDL files that have partial interfaces in modules. 3848 # testing IDL files that have partial interfaces in modules.
3848 'webcore_testing_idl_with_modules_dependency_files': [ 3849 'webcore_testing_idl_with_modules_dependency_files': [
3849 'testing/Internals.idl', 3850 'testing/Internals.idl',
3850 ], 3851 ],
3851 'webcore_testing_dependency_idl_files': [ 3852 'webcore_testing_dependency_idl_files': [
3852 'origin_trials/testing/InternalsFrobulate.idl', 3853 'origin_trials/testing/InternalsFrobulate.idl',
3853 'testing/PartialPrivateScriptTest.idl', 3854 'testing/PartialPrivateScriptTest.idl',
3854 ], 3855 ],
3855 'generated_webcore_testing_idl_files': [ 3856 'generated_webcore_testing_idl_files': [
(...skipping 28 matching lines...) Expand all
3884 'testing/LayerRectList.h', 3885 'testing/LayerRectList.h',
3885 'testing/NullExecutionContext.cpp', 3886 'testing/NullExecutionContext.cpp',
3886 'testing/NullExecutionContext.h', 3887 'testing/NullExecutionContext.h',
3887 'testing/PrivateScriptTest.cpp', 3888 'testing/PrivateScriptTest.cpp',
3888 'testing/PrivateScriptTest.h', 3889 'testing/PrivateScriptTest.h',
3889 'testing/TypeConversions.h', 3890 'testing/TypeConversions.h',
3890 'testing/UnionTypesTest.cpp', 3891 'testing/UnionTypesTest.cpp',
3891 'testing/UnionTypesTest.h', 3892 'testing/UnionTypesTest.h',
3892 'testing/v8/WebCoreTestSupport.cpp', 3893 'testing/v8/WebCoreTestSupport.cpp',
3893 'testing/v8/WebCoreTestSupport.h', 3894 'testing/v8/WebCoreTestSupport.h',
3895 'testing/WorkerInternals.cpp',
3896 'testing/WorkerInternals.h',
3894 ], 3897 ],
3895 'core_unittest_files': [ 3898 'core_unittest_files': [
3896 'animation/AnimationClockTest.cpp', 3899 'animation/AnimationClockTest.cpp',
3897 'animation/AnimationInputHelpersTest.cpp', 3900 'animation/AnimationInputHelpersTest.cpp',
3898 'animation/AnimationEffectTest.cpp', 3901 'animation/AnimationEffectTest.cpp',
3899 'animation/AnimationTest.cpp', 3902 'animation/AnimationTest.cpp',
3900 'animation/AnimationStackTest.cpp', 3903 'animation/AnimationStackTest.cpp',
3901 'animation/KeyframeEffectTest.cpp', 3904 'animation/KeyframeEffectTest.cpp',
3902 'animation/AnimationTestHelper.cpp', 3905 'animation/AnimationTestHelper.cpp',
3903 'animation/AnimationTestHelper.h', 3906 'animation/AnimationTestHelper.h',
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
4121 'svg/UnsafeSVGAttributeSanitizationTest.cpp', 4124 'svg/UnsafeSVGAttributeSanitizationTest.cpp',
4122 'testing/PrivateScriptTestTest.cpp', 4125 'testing/PrivateScriptTestTest.cpp',
4123 'timing/MemoryInfoTest.cpp', 4126 'timing/MemoryInfoTest.cpp',
4124 'timing/PerformanceBaseTest.cpp', 4127 'timing/PerformanceBaseTest.cpp',
4125 'workers/WorkerThreadTest.cpp', 4128 'workers/WorkerThreadTest.cpp',
4126 'workers/WorkerThreadTestHelper.h', 4129 'workers/WorkerThreadTestHelper.h',
4127 'xml/parser/SharedBufferReaderTest.cpp', 4130 'xml/parser/SharedBufferReaderTest.cpp',
4128 ], 4131 ],
4129 } 4132 }
4130 } 4133 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/BUILD.gn ('k') | third_party/WebKit/Source/core/core_generated.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698