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

Side by Side 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 unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'ios_web', 11 'target_name': 'ios_web',
12 'type': 'static_library', 12 'type': 'static_library',
13 'include_dirs': [ 13 'include_dirs': [
14 '../..', 14 '../..',
15 ], 15 ],
16 'dependencies': [ 16 'dependencies': [
17 'webp_decoder',
17 '../../base/base.gyp:base', 18 '../../base/base.gyp:base',
18 '../../content/content.gyp:content_browser', 19 '../../content/content.gyp:content_browser',
19 '../../net/net.gyp:net', 20 '../../net/net.gyp:net',
20 '../../ui/base/ui_base.gyp:ui_base', 21 '../../ui/base/ui_base.gyp:ui_base',
21 '../../ui/gfx/gfx.gyp:gfx', 22 '../../ui/gfx/gfx.gyp:gfx',
22 ], 23 ],
23 'sources': [ 24 'sources': [
24 'browser_state.cc', 25 'browser_state.cc',
25 'navigation/navigation_item_impl.h', 26 'navigation/navigation_item_impl.h',
26 'navigation/navigation_item_impl.mm', 27 'navigation/navigation_item_impl.mm',
27 'public/browser_state.h', 28 'public/browser_state.h',
28 'public/favicon_status.cc', 29 'public/favicon_status.cc',
29 'public/favicon_status.h', 30 'public/favicon_status.h',
30 'public/navigation_item.h', 31 'public/navigation_item.h',
31 'public/referrer.h', 32 'public/referrer.h',
32 'public/security_style.h', 33 'public/security_style.h',
33 'public/ssl_status.cc', 34 'public/ssl_status.cc',
34 'public/ssl_status.h', 35 'public/ssl_status.h',
35 'public/user_agent.h', 36 'public/user_agent.h',
36 'public/user_agent.mm', 37 'public/user_agent.mm',
37 'public/web_thread.h', 38 'public/web_thread.h',
38 'web_thread.cc', 39 'web_thread.cc',
39 ], 40 ],
40 }, 41 },
41 { 42 {
43 'target_name': 'webp_decoder',
44 'type': 'static_library',
45 'include_dirs': [
46 '../..',
47 ],
48 'dependencies': [
49 '../../base/base.gyp:base',
50 '../../third_party/libwebp/libwebp.gyp:libwebp_dec',
51 ],
52 'sources': [
53 'public/webp_decoder.h',
54 'public/webp_decoder.mm',
55 ],
56 },
57 {
42 'target_name': 'test_support_ios_web', 58 'target_name': 'test_support_ios_web',
43 'type': 'static_library', 59 'type': 'static_library',
44 'dependencies': [ 60 'dependencies': [
45 'ios_web', 61 'ios_web',
46 ], 62 ],
47 'include_dirs': [ 63 'include_dirs': [
48 '../..', 64 '../..',
49 ], 65 ],
50 'sources': [ 66 'sources': [
51 'public/test/test_browser_state.cc', 67 'public/test/test_browser_state.cc',
52 'public/test/test_browser_state.h', 68 'public/test/test_browser_state.h',
53 ], 69 ],
54 }, 70 },
55 ], 71 ],
56 } 72 }
OLDNEW
« 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