Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 } | |
| OLD | NEW |