Chromium Code Reviews| Index: components/image_fetcher/ios/BUILD.gn |
| diff --git a/components/image_fetcher/ios/BUILD.gn b/components/image_fetcher/ios/BUILD.gn |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..49f8f26da473ad82a5e0a20d213b1f1a1a004e8c |
| --- /dev/null |
| +++ b/components/image_fetcher/ios/BUILD.gn |
| @@ -0,0 +1,17 @@ |
| +# Copyright 2016 The Chromium Authors. All rights reserved. |
|
Marc Treib
2017/01/25 10:37:55
2017
gambard
2017/01/30 13:37:53
Done.
|
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +source_set("ios") { |
| + configs += [ "//build/config/compiler:enable_arc" ] |
| + sources = [ |
| + "ios_image_data_fetcher.h", |
| + "ios_image_data_fetcher.mm", |
| + ] |
| + deps = [ |
| + "//base", |
| + "//components/image_fetcher", |
| + "//ios/web/public/image_fetcher", |
| + "//net", |
| + ] |
| +} |