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

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: Rebase 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
« no previous file with comments | « ios/web/DEPS ('k') | ios/web/public/webp_decoder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/web/ios_web.gyp
diff --git a/ios/web/ios_web.gyp b/ios/web/ios_web.gyp
index f22e2bae0511f965404da743488a898880f43693..c21171e27f1754a66dec12d8b7ccfcd335c18311 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',
@@ -45,6 +46,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') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698