| 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("reading_list") { | 5 source_set("reading_list") { |
| 6 sources = [ | 6 sources = [ |
| 7 "reading_list_download_service.cc", | 7 "reading_list_download_service.cc", |
| 8 "reading_list_download_service.h", | 8 "reading_list_download_service.h", |
| 9 "reading_list_download_service_factory.cc", | 9 "reading_list_download_service_factory.cc", |
| 10 "reading_list_download_service_factory.h", | 10 "reading_list_download_service_factory.h", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 "url_downloader.h", | 29 "url_downloader.h", |
| 30 ] | 30 ] |
| 31 | 31 |
| 32 deps = [ | 32 deps = [ |
| 33 "//base", | 33 "//base", |
| 34 "//components/keyed_service/core", | 34 "//components/keyed_service/core", |
| 35 "//components/keyed_service/ios", | 35 "//components/keyed_service/ios", |
| 36 "//components/leveldb_proto", | 36 "//components/leveldb_proto", |
| 37 "//components/pref_registry", | 37 "//components/pref_registry", |
| 38 "//components/prefs", | 38 "//components/prefs", |
| 39 "//components/sync", |
| 39 "//ios/chrome/browser/reading_list/proto", | 40 "//ios/chrome/browser/reading_list/proto", |
| 40 "//ios/web", | 41 "//ios/web", |
| 41 "//net", | 42 "//net", |
| 42 "//url", | 43 "//url", |
| 43 ] | 44 ] |
| 44 } | 45 } |
| 45 | 46 |
| 46 source_set("reading_list_tests") { | 47 source_set("reading_list_tests") { |
| 47 testonly = true | 48 testonly = true |
| 48 sources = [ | 49 sources = [ |
| 49 "reading_list_entry_unittest.cc", | 50 "reading_list_entry_unittest.cc", |
| 50 "reading_list_model_unittest.cc", | 51 "reading_list_model_unittest.cc", |
| 51 "reading_list_store_unittest.cc", | 52 "reading_list_store_unittest.cc", |
| 52 "url_downloader_unittest.cc", | 53 "url_downloader_unittest.cc", |
| 53 ] | 54 ] |
| 54 deps = [ | 55 deps = [ |
| 55 ":reading_list", | 56 ":reading_list", |
| 56 "//base", | 57 "//base", |
| 57 "//base/test:test_support", | 58 "//base/test:test_support", |
| 58 "//components/leveldb_proto:test_support", | 59 "//components/leveldb_proto:test_support", |
| 59 "//ios/chrome/browser", | 60 "//ios/chrome/browser", |
| 60 "//ios/chrome/browser/reading_list/proto", | 61 "//ios/chrome/browser/reading_list/proto", |
| 61 "//ios/web:test_support", | 62 "//ios/web:test_support", |
| 62 "//testing/gtest", | 63 "//testing/gtest", |
| 63 ] | 64 ] |
| 64 } | 65 } |
| OLD | NEW |