| 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" ]
|
| }
|
|
|