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

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

Issue 14449003: Picture element initial implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@picture_after_rebase
Patch Set: Created 7 years, 8 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/CSSCharsetRule.idl', 4 'css/CSSCharsetRule.idl',
5 'css/CSSFontFaceLoadEvent.idl', 5 'css/CSSFontFaceLoadEvent.idl',
6 'css/CSSFontFaceRule.idl', 6 'css/CSSFontFaceRule.idl',
7 'css/CSSHostRule.idl', 7 'css/CSSHostRule.idl',
8 'css/CSSImportRule.idl', 8 'css/CSSImportRule.idl',
9 'css/CSSMediaRule.idl', 9 'css/CSSMediaRule.idl',
10 'css/CSSPageRule.idl', 10 'css/CSSPageRule.idl',
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 'html/HTMLFormControlsCollection.idl', 147 'html/HTMLFormControlsCollection.idl',
148 'html/HTMLFormElement.idl', 148 'html/HTMLFormElement.idl',
149 'html/HTMLFrameElement.idl', 149 'html/HTMLFrameElement.idl',
150 'html/HTMLFrameSetElement.idl', 150 'html/HTMLFrameSetElement.idl',
151 'html/HTMLHRElement.idl', 151 'html/HTMLHRElement.idl',
152 'html/HTMLHeadElement.idl', 152 'html/HTMLHeadElement.idl',
153 'html/HTMLHeadingElement.idl', 153 'html/HTMLHeadingElement.idl',
154 'html/HTMLHtmlElement.idl', 154 'html/HTMLHtmlElement.idl',
155 'html/HTMLIFrameElement.idl', 155 'html/HTMLIFrameElement.idl',
156 'html/HTMLImageElement.idl', 156 'html/HTMLImageElement.idl',
157 'html/HTMLPictureElement.idl',
157 'html/HTMLInputElement.idl', 158 'html/HTMLInputElement.idl',
158 'html/HTMLKeygenElement.idl', 159 'html/HTMLKeygenElement.idl',
159 'html/HTMLLIElement.idl', 160 'html/HTMLLIElement.idl',
160 'html/HTMLLabelElement.idl', 161 'html/HTMLLabelElement.idl',
161 'html/HTMLLegendElement.idl', 162 'html/HTMLLegendElement.idl',
162 'html/HTMLLinkElement.idl', 163 'html/HTMLLinkElement.idl',
163 'html/HTMLMapElement.idl', 164 'html/HTMLMapElement.idl',
164 'html/HTMLMarqueeElement.idl', 165 'html/HTMLMarqueeElement.idl',
165 'html/HTMLMediaElement.idl', 166 'html/HTMLMediaElement.idl',
166 'html/HTMLMenuElement.idl', 167 'html/HTMLMenuElement.idl',
(...skipping 1880 matching lines...) Expand 10 before | Expand all | Expand 10 after
2047 'html/HTMLHRElement.cpp', 2048 'html/HTMLHRElement.cpp',
2048 'html/HTMLHRElement.h', 2049 'html/HTMLHRElement.h',
2049 'html/HTMLHeadElement.cpp', 2050 'html/HTMLHeadElement.cpp',
2050 'html/HTMLHeadingElement.cpp', 2051 'html/HTMLHeadingElement.cpp',
2051 'html/HTMLHeadingElement.h', 2052 'html/HTMLHeadingElement.h',
2052 'html/HTMLHtmlElement.cpp', 2053 'html/HTMLHtmlElement.cpp',
2053 'html/HTMLHtmlElement.h', 2054 'html/HTMLHtmlElement.h',
2054 'html/HTMLIFrameElement.cpp', 2055 'html/HTMLIFrameElement.cpp',
2055 'html/HTMLImageElement.cpp', 2056 'html/HTMLImageElement.cpp',
2056 'html/HTMLImageElement.h', 2057 'html/HTMLImageElement.h',
2058 'html/HTMLPictureElement.cpp',
2059 'html/HTMLPictureElement.h',
2057 'html/HTMLImageLoader.cpp', 2060 'html/HTMLImageLoader.cpp',
2058 'html/HTMLImageLoader.h', 2061 'html/HTMLImageLoader.h',
2059 'html/HTMLInputElement.cpp', 2062 'html/HTMLInputElement.cpp',
2060 'html/HTMLKeygenElement.cpp', 2063 'html/HTMLKeygenElement.cpp',
2061 'html/HTMLKeygenElement.h', 2064 'html/HTMLKeygenElement.h',
2062 'html/HTMLLIElement.cpp', 2065 'html/HTMLLIElement.cpp',
2063 'html/HTMLLIElement.h', 2066 'html/HTMLLIElement.h',
2064 'html/HTMLLabelElement.cpp', 2067 'html/HTMLLabelElement.cpp',
2065 'html/HTMLLabelElement.h', 2068 'html/HTMLLabelElement.h',
2066 'html/HTMLLegendElement.cpp', 2069 'html/HTMLLegendElement.cpp',
(...skipping 26 matching lines...) Expand all
2093 'html/HTMLOptionsCollection.cpp', 2096 'html/HTMLOptionsCollection.cpp',
2094 'html/HTMLOptionsCollection.h', 2097 'html/HTMLOptionsCollection.h',
2095 'html/HTMLOutputElement.cpp', 2098 'html/HTMLOutputElement.cpp',
2096 'html/HTMLOutputElement.h', 2099 'html/HTMLOutputElement.h',
2097 'html/HTMLParagraphElement.cpp', 2100 'html/HTMLParagraphElement.cpp',
2098 'html/HTMLParagraphElement.h', 2101 'html/HTMLParagraphElement.h',
2099 'html/HTMLParamElement.cpp', 2102 'html/HTMLParamElement.cpp',
2100 'html/HTMLParamElement.h', 2103 'html/HTMLParamElement.h',
2101 'html/HTMLParserErrorCodes.cpp', 2104 'html/HTMLParserErrorCodes.cpp',
2102 'html/HTMLParserErrorCodes.h', 2105 'html/HTMLParserErrorCodes.h',
2106 'html/HTMLPictureElement.cpp',
2107 'html/HTMLPictureElement.h',
2103 'html/HTMLPlugInElement.cpp', 2108 'html/HTMLPlugInElement.cpp',
2104 'html/HTMLPlugInImageElement.cpp', 2109 'html/HTMLPlugInImageElement.cpp',
2105 'html/HTMLPreElement.cpp', 2110 'html/HTMLPreElement.cpp',
2106 'html/HTMLPreElement.h', 2111 'html/HTMLPreElement.h',
2107 'html/HTMLProgressElement.cpp', 2112 'html/HTMLProgressElement.cpp',
2108 'html/HTMLProgressElement.h', 2113 'html/HTMLProgressElement.h',
2109 'html/HTMLQuoteElement.cpp', 2114 'html/HTMLQuoteElement.cpp',
2110 'html/HTMLQuoteElement.h', 2115 'html/HTMLQuoteElement.h',
2111 'html/HTMLScriptElement.cpp', 2116 'html/HTMLScriptElement.cpp',
2112 'html/HTMLScriptElement.h', 2117 'html/HTMLScriptElement.h',
(...skipping 1607 matching lines...) Expand 10 before | Expand all | Expand 10 after
3720 'bison_exe': 'bison', 3725 'bison_exe': 'bison',
3721 # We specify a preprocess so it happens locally and won't get 3726 # We specify a preprocess so it happens locally and won't get
3722 # distributed to goma. 3727 # distributed to goma.
3723 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to 3728 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to
3724 # use /usr/bin/clang once we require Xcode 4.x. 3729 # use /usr/bin/clang once we require Xcode 4.x.
3725 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"' 3730 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"'
3726 }], 3731 }],
3727 ], 3732 ],
3728 } 3733 }
3729 } 3734 }
OLDNEW
« no previous file with comments | « Source/bindings/v8/custom/V8HTMLPictureElementConstructor.cpp ('k') | Source/core/dom/ContainerNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698