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

Side by Side Diff: components/image_fetcher/ios/BUILD.gn

Issue 2663213002: Create the IOSImageDataFetcherWrapper (Closed)
Patch Set: Address comments Created 3 years, 10 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2017 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 source_set("ios") {
6 configs += [ "//build/config/compiler:enable_arc" ]
sdefresne 2017/02/02 10:42:05 nit: please move the "configs" line at the bottom
gambard 2017/02/02 11:57:02 Done.
7 sources = [
8 "ios_image_data_fetcher_wrapper.h",
9 "ios_image_data_fetcher_wrapper.mm",
10 ]
11 deps = [
12 "//base",
13 "//components/image_fetcher",
14 "//ios/web/public/image_fetcher",
15 "//net",
16 ]
17 }
18
19 source_set("unit_tests") {
20 configs += [ "//build/config/compiler:enable_arc" ]
sdefresne 2017/02/02 10:42:05 ditto
gambard 2017/02/02 11:57:02 Done.
21 testonly = true
22 sources = [
23 "ios_image_data_fetcher_wrapper_unittest.mm",
24 ]
25 deps = [
26 ":ios",
27 "//base",
28 "//ios/web/public/image_fetcher",
29 "//net",
30 "//net:test_support",
31 "//testing/gmock",
32 "//testing/gtest",
33 ]
34 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698