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

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

Issue 19885002: WebCrypto: Add interfaces for importKey(). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add testing interface 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 3667 matching lines...) Expand 10 before | Expand all | Expand 10 after
3678 'testing/TypeConversions.h', 3678 'testing/TypeConversions.h',
3679 '<(SHARED_INTERMEDIATE_DIR)/webkit/InternalSettingsGenerated.cpp', 3679 '<(SHARED_INTERMEDIATE_DIR)/webkit/InternalSettingsGenerated.cpp',
3680 '<(SHARED_INTERMEDIATE_DIR)/webkit/InternalSettingsGenerated.h', 3680 '<(SHARED_INTERMEDIATE_DIR)/webkit/InternalSettingsGenerated.h',
3681 ], 3681 ],
3682 'webcore_platform_support_files': [ 3682 'webcore_platform_support_files': [
3683 'platform/chromium/support/Platform.cpp', 3683 'platform/chromium/support/Platform.cpp',
3684 'platform/chromium/support/WebActiveGestureAnimation.cpp', 3684 'platform/chromium/support/WebActiveGestureAnimation.cpp',
3685 'platform/chromium/support/WebActiveGestureAnimation.h', 3685 'platform/chromium/support/WebActiveGestureAnimation.h',
3686 'platform/chromium/support/WebArrayBuffer.cpp', 3686 'platform/chromium/support/WebArrayBuffer.cpp',
3687 'platform/chromium/support/WebAudioBus.cpp', 3687 'platform/chromium/support/WebAudioBus.cpp',
3688 'platform/chromium/support/WebCrypto.cpp',
3688 'platform/chromium/support/WebCryptoAlgorithm.cpp', 3689 'platform/chromium/support/WebCryptoAlgorithm.cpp',
3689 'platform/chromium/support/WebCryptoKey.cpp', 3690 'platform/chromium/support/WebCryptoKey.cpp',
3690 'platform/chromium/support/WebCursorInfo.cpp', 3691 'platform/chromium/support/WebCursorInfo.cpp',
3691 'platform/chromium/support/WebData.cpp', 3692 'platform/chromium/support/WebData.cpp',
3692 'platform/chromium/support/WebDeviceMotionData.cpp', 3693 'platform/chromium/support/WebDeviceMotionData.cpp',
3693 'platform/chromium/support/WebDeviceOrientationData.cpp', 3694 'platform/chromium/support/WebDeviceOrientationData.cpp',
3694 'platform/chromium/support/WebFloatQuad.cpp', 3695 'platform/chromium/support/WebFloatQuad.cpp',
3695 'platform/chromium/support/WebHTTPBody.cpp', 3696 'platform/chromium/support/WebHTTPBody.cpp',
3696 'platform/chromium/support/WebHTTPLoadInfo.cpp', 3697 'platform/chromium/support/WebHTTPLoadInfo.cpp',
3697 'platform/chromium/support/WebMediaConstraints.cpp', 3698 'platform/chromium/support/WebMediaConstraints.cpp',
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
3790 'bison_exe': 'bison', 3791 'bison_exe': 'bison',
3791 # We specify a preprocess so it happens locally and won't get 3792 # We specify a preprocess so it happens locally and won't get
3792 # distributed to goma. 3793 # distributed to goma.
3793 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to 3794 # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to
3794 # use /usr/bin/clang once we require Xcode 4.x. 3795 # use /usr/bin/clang once we require Xcode 4.x.
3795 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"' 3796 'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"'
3796 }], 3797 }],
3797 ], 3798 ],
3798 } 3799 }
3799 } 3800 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698