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

Unified Diff: ios/web/ios_web.gyp

Issue 771723002: Add support for decoding WebP images (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@chrome-browser-state
Patch Set: Created 6 years 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 side-by-side diff with in-line comments
Download patch
Index: ios/web/ios_web.gyp
diff --git a/ios/web/ios_web.gyp b/ios/web/ios_web.gyp
index cf086440434dc440c270d0982b967b932d59110f..9b94e648112c9ec7758ca8683b313f918df48d5e 100644
--- a/ios/web/ios_web.gyp
+++ b/ios/web/ios_web.gyp
@@ -14,6 +14,7 @@
'../..',
],
'dependencies': [
+ 'webp_decoder',
'../../base/base.gyp:base',
'../../content/content.gyp:content_browser',
'../../net/net.gyp:net',
@@ -39,6 +40,21 @@
],
},
{
+ 'target_name': 'webp_decoder',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '../..',
+ ],
+ 'dependencies': [
+ '../../base/base.gyp:base',
+ '../../third_party/libwebp/libwebp.gyp:libwebp_dec',
+ ],
+ 'sources': [
+ 'public/webp_decoder.h',
+ 'public/webp_decoder.mm',
+ ],
+ },
+ {
'target_name': 'test_support_ios_web',
'type': 'static_library',
'dependencies': [
« no previous file with comments | « ios/web/DEPS ('k') | ios/web/public/webp_decoder.h » ('j') | ios/web/public/webp_decoder.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698