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

Unified Diff: components/image_fetcher/ios/BUILD.gn

Issue 2762063003: Move iOS image_fetcher::ImageDecoder to layered component (Closed)
Patch Set: More fixes. Created 3 years, 9 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 | « no previous file | components/image_fetcher/ios/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/image_fetcher/ios/BUILD.gn
diff --git a/components/image_fetcher/ios/BUILD.gn b/components/image_fetcher/ios/BUILD.gn
index 88d514b151fba22abc4650e62ebeed4f764e63f7..afa631b9fea2a888527aa6f687bfa24516dc100f 100644
--- a/components/image_fetcher/ios/BUILD.gn
+++ b/components/image_fetcher/ios/BUILD.gn
@@ -6,14 +6,18 @@ source_set("ios") {
sources = [
"ios_image_data_fetcher_wrapper.h",
"ios_image_data_fetcher_wrapper.mm",
+ "ios_image_decoder_impl.h",
+ "ios_image_decoder_impl.mm",
"webp_decoder.h",
"webp_decoder.mm",
]
deps = [
"//base",
"//components/image_fetcher",
+ "//ios/web",
"//net",
"//third_party/libwebp:libwebp_dec",
+ "//ui/gfx",
]
configs += [ "//build/config/compiler:enable_arc" ]
}
@@ -22,6 +26,7 @@ source_set("unit_tests") {
testonly = true
sources = [
"ios_image_data_fetcher_wrapper_unittest.mm",
+ "ios_image_decoder_impl_unittest.mm",
"webp_decoder_unittest.mm",
]
deps = [
@@ -32,6 +37,7 @@ source_set("unit_tests") {
"//net:test_support",
"//testing/gmock",
"//testing/gtest",
+ "//ui/gfx",
]
configs += [ "//build/config/compiler:enable_arc" ]
}
« no previous file with comments | « no previous file | components/image_fetcher/ios/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698