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

Unified Diff: components/image_fetcher.gypi

Issue 2064793004: Reland: Split the code for fetching images and for decoding images into two separate classes. This w (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Only start image requests once (Fixes a bug). Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | components/image_fetcher/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/image_fetcher.gypi
diff --git a/components/image_fetcher.gypi b/components/image_fetcher.gypi
index 2b9c9a79e56c974962c9ff949aee37f855ed8196..be4c5cfeeea938cf2d411c8eb57a7934e81a6b67 100644
--- a/components/image_fetcher.gypi
+++ b/components/image_fetcher.gypi
@@ -7,15 +7,19 @@
{
# GN version: //components/image_fetcher
'target_name': 'image_fetcher',
- 'type': 'none',
+ 'type': 'static_library',
'include_dirs': [
'..',
],
'dependencies': [
'../base/base.gyp:base',
+ '../net/net.gyp:net',
'../url/url.gyp:url_lib',
],
'sources': [
+ 'image_fetcher/image_data_fetcher.cc',
+ 'image_fetcher/image_data_fetcher.h',
+ 'image_fetcher/image_decoder.h',
'image_fetcher/image_fetcher.h',
'image_fetcher/image_fetcher_delegate.h',
]
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | components/image_fetcher/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698