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

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

Issue 18332025: Split CustomElementRegistry into a registration context and a registry. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Tweaks. 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 | Annotate | Revision Log
OLDNEW
1 { 1 {
2 'variables': { 2 'variables': {
3 'deprecated_perl_core_idl_files': [ 3 'deprecated_perl_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 1728 matching lines...) Expand 10 before | Expand all | Expand 10 after
1739 'dom/CustomElementCallbackDispatcher.h', 1739 'dom/CustomElementCallbackDispatcher.h',
1740 'dom/CustomElementCallbackInvocation.cpp', 1740 'dom/CustomElementCallbackInvocation.cpp',
1741 'dom/CustomElementCallbackInvocation.h', 1741 'dom/CustomElementCallbackInvocation.h',
1742 'dom/CustomElementCallbackQueue.cpp', 1742 'dom/CustomElementCallbackQueue.cpp',
1743 'dom/CustomElementCallbackQueue.h', 1743 'dom/CustomElementCallbackQueue.h',
1744 'dom/CustomElementDefinition.cpp', 1744 'dom/CustomElementDefinition.cpp',
1745 'dom/CustomElementDefinition.h', 1745 'dom/CustomElementDefinition.h',
1746 'dom/CustomElementDescriptor.h', 1746 'dom/CustomElementDescriptor.h',
1747 'dom/CustomElementDescriptorHash.h', 1747 'dom/CustomElementDescriptorHash.h',
1748 'dom/CustomElementLifecycleCallbacks.h', 1748 'dom/CustomElementLifecycleCallbacks.h',
1749 'dom/CustomElementRegistrationContext.cpp',
1750 'dom/CustomElementRegistrationContext.h',
1749 'dom/CustomElementRegistry.cpp', 1751 'dom/CustomElementRegistry.cpp',
1750 'dom/CustomElementRegistry.h', 1752 'dom/CustomElementRegistry.h',
1751 'dom/CustomElementUpgradeCandidateMap.cpp', 1753 'dom/CustomElementUpgradeCandidateMap.cpp',
1752 'dom/CustomElementUpgradeCandidateMap.h', 1754 'dom/CustomElementUpgradeCandidateMap.h',
1753 'dom/CustomEvent.cpp', 1755 'dom/CustomEvent.cpp',
1754 'dom/CustomEvent.h', 1756 'dom/CustomEvent.h',
1755 'dom/DOMError.cpp', 1757 'dom/DOMError.cpp',
1756 'dom/DOMError.h', 1758 'dom/DOMError.h',
1757 'dom/DOMException.cpp', 1759 'dom/DOMException.cpp',
1758 'dom/DOMException.h', 1760 'dom/DOMException.h',
(...skipping 2002 matching lines...) Expand 10 before | Expand all | Expand 10 after
3761 'bison_exe': 'bison', 3763 'bison_exe': 'bison',
3762 # We specify a preprocess so it happens locally and won't get 3764 # We specify a preprocess so it happens locally and won't get
3763 # distributed to goma. 3765 # distributed to goma.
3764 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to 3766 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to
3765 # use /usr/bin/clang once we require Xcode 4.x. 3767 # use /usr/bin/clang once we require Xcode 4.x.
3766 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"' 3768 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"'
3767 }], 3769 }],
3768 ], 3770 ],
3769 } 3771 }
3770 } 3772 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698