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

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

Issue 14773025: Create ResourceProgressEvent, expose as Chromium API (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: pre-review cleanup Created 7 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 { 2 {
3 'variables': { 3 'variables': {
4 'core_idl_files': [ 4 'core_idl_files': [
5 'css/CSS.idl', 5 'css/CSS.idl',
6 'css/CSSCharsetRule.idl', 6 'css/CSSCharsetRule.idl',
7 'css/CSSFontFaceLoadEvent.idl', 7 'css/CSSFontFaceLoadEvent.idl',
8 'css/CSSFontFaceRule.idl', 8 'css/CSSFontFaceRule.idl',
9 'css/CSSHostRule.idl', 9 'css/CSSHostRule.idl',
10 'css/CSSImportRule.idl', 10 'css/CSSImportRule.idl',
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 'dom/NodeIterator.idl', 88 'dom/NodeIterator.idl',
89 'dom/NodeList.idl', 89 'dom/NodeList.idl',
90 'dom/Notation.idl', 90 'dom/Notation.idl',
91 'dom/OverflowEvent.idl', 91 'dom/OverflowEvent.idl',
92 'dom/PageTransitionEvent.idl', 92 'dom/PageTransitionEvent.idl',
93 'dom/PopStateEvent.idl', 93 'dom/PopStateEvent.idl',
94 'dom/ProcessingInstruction.idl', 94 'dom/ProcessingInstruction.idl',
95 'dom/ProgressEvent.idl', 95 'dom/ProgressEvent.idl',
96 'dom/Range.idl', 96 'dom/Range.idl',
97 'dom/RequestAnimationFrameCallback.idl', 97 'dom/RequestAnimationFrameCallback.idl',
98 'dom/ResourceProgressEvent.idl',
98 'dom/SecurityPolicyViolationEvent.idl', 99 'dom/SecurityPolicyViolationEvent.idl',
99 'dom/StringCallback.idl', 100 'dom/StringCallback.idl',
100 'dom/Text.idl', 101 'dom/Text.idl',
101 'dom/TextEvent.idl', 102 'dom/TextEvent.idl',
102 'dom/Touch.idl', 103 'dom/Touch.idl',
103 'dom/TouchEvent.idl', 104 'dom/TouchEvent.idl',
104 'dom/TouchList.idl', 105 'dom/TouchList.idl',
105 'dom/TransitionEvent.idl', 106 'dom/TransitionEvent.idl',
106 'dom/TreeWalker.idl', 107 'dom/TreeWalker.idl',
107 'dom/UIEvent.idl', 108 'dom/UIEvent.idl',
(...skipping 1724 matching lines...) Expand 10 before | Expand all | Expand 10 after
1832 'dom/ProcessingInstruction.cpp', 1833 'dom/ProcessingInstruction.cpp',
1833 'dom/ProcessingInstruction.h', 1834 'dom/ProcessingInstruction.h',
1834 'dom/ProgressEvent.cpp', 1835 'dom/ProgressEvent.cpp',
1835 'dom/ProgressEvent.h', 1836 'dom/ProgressEvent.h',
1836 'dom/PseudoElement.cpp', 1837 'dom/PseudoElement.cpp',
1837 'dom/QualifiedName.cpp', 1838 'dom/QualifiedName.cpp',
1838 'dom/Range.cpp', 1839 'dom/Range.cpp',
1839 'dom/RawDataDocumentParser.h', 1840 'dom/RawDataDocumentParser.h',
1840 'dom/RegisteredEventListener.cpp', 1841 'dom/RegisteredEventListener.cpp',
1841 'dom/RequestAnimationFrameCallback.h', 1842 'dom/RequestAnimationFrameCallback.h',
1843 'dom/ResourceProgressEvent.cpp',
1844 'dom/ResourceProgressEvent.h',
1842 'dom/ScopedEventQueue.cpp', 1845 'dom/ScopedEventQueue.cpp',
1843 'dom/ScopedEventQueue.h', 1846 'dom/ScopedEventQueue.h',
1844 'dom/ScriptElement.cpp', 1847 'dom/ScriptElement.cpp',
1845 'dom/ScriptElement.h', 1848 'dom/ScriptElement.h',
1846 'dom/ScriptExecutionContext.cpp', 1849 'dom/ScriptExecutionContext.cpp',
1847 'dom/ScriptRunner.cpp', 1850 'dom/ScriptRunner.cpp',
1848 'dom/ScriptableDocumentParser.cpp', 1851 'dom/ScriptableDocumentParser.cpp',
1849 'dom/ScriptableDocumentParser.h', 1852 'dom/ScriptableDocumentParser.h',
1850 'dom/ScriptedAnimationController.cpp', 1853 'dom/ScriptedAnimationController.cpp',
1851 'dom/ScriptedAnimationController.h', 1854 'dom/ScriptedAnimationController.h',
(...skipping 1823 matching lines...) Expand 10 before | Expand all | Expand 10 after
3675 'bison_exe': 'bison', 3678 'bison_exe': 'bison',
3676 # We specify a preprocess so it happens locally and won't get 3679 # We specify a preprocess so it happens locally and won't get
3677 # distributed to goma. 3680 # distributed to goma.
3678 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to 3681 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to
3679 # use /usr/bin/clang once we require Xcode 4.x. 3682 # use /usr/bin/clang once we require Xcode 4.x.
3680 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"' 3683 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"'
3681 }], 3684 }],
3682 ], 3685 ],
3683 } 3686 }
3684 } 3687 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698