| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 source_set("ios") { | 5 source_set("ios") { |
| 6 sources = [ | 6 sources = [ |
| 7 "favicon_web_state_dispatcher.h", | 7 "favicon_web_state_dispatcher.h", |
| 8 "offline_url_utils.cc", | 8 "offline_url_utils.cc", |
| 9 "offline_url_utils.h", | 9 "offline_url_utils.h", |
| 10 "reading_list_entry.cc", | 10 "reading_list_entry.cc", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 public_deps = [ | 36 public_deps = [ |
| 37 "//components/reading_list/ios/proto", | 37 "//components/reading_list/ios/proto", |
| 38 ] | 38 ] |
| 39 } | 39 } |
| 40 | 40 |
| 41 source_set("unit_tests") { | 41 source_set("unit_tests") { |
| 42 testonly = true | 42 testonly = true |
| 43 sources = [ | 43 sources = [ |
| 44 "offline_url_utils_unittest.cc", | 44 "offline_url_utils_unittest.cc", |
| 45 "reading_list_entry_unittest.cc", | 45 "reading_list_entry_unittest.cc", |
| 46 "reading_list_model_unittest.mm", | 46 "reading_list_model_unittest.cc", |
| 47 "reading_list_store_unittest.mm", | 47 "reading_list_store_unittest.cc", |
| 48 ] | 48 ] |
| 49 deps = [ | 49 deps = [ |
| 50 ":ios", | 50 ":ios", |
| 51 "//base", | 51 "//base", |
| 52 "//base/test:test_support", | 52 "//base/test:test_support", |
| 53 "//components/sync", | 53 "//components/sync", |
| 54 "//components/sync:test_support_model", | 54 "//components/sync:test_support_model", |
| 55 "//testing/gtest", | 55 "//testing/gtest", |
| 56 "//url", | 56 "//url", |
| 57 ] | 57 ] |
| 58 } | 58 } |
| OLD | NEW |