| 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 "offline_url_utils.cc", | 7 "offline_url_utils.cc", |
| 8 "offline_url_utils.h", | 8 "offline_url_utils.h", |
| 9 "reading_list_download_service.cc", | 9 "reading_list_download_service.cc", |
| 10 "reading_list_download_service.h", | 10 "reading_list_download_service.h", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 "reading_list_web_state_observer.mm", | 25 "reading_list_web_state_observer.mm", |
| 26 "url_downloader.cc", | 26 "url_downloader.cc", |
| 27 "url_downloader.h", | 27 "url_downloader.h", |
| 28 ] | 28 ] |
| 29 deps = [ | 29 deps = [ |
| 30 "//base", | 30 "//base", |
| 31 "//components/keyed_service/core", | 31 "//components/keyed_service/core", |
| 32 "//components/keyed_service/ios", | 32 "//components/keyed_service/ios", |
| 33 "//components/pref_registry", | 33 "//components/pref_registry", |
| 34 "//components/prefs", | 34 "//components/prefs", |
| 35 "//components/reading_list", | 35 "//components/reading_list/core", |
| 36 "//components/reading_list/ios", |
| 36 "//ios/chrome/browser", | 37 "//ios/chrome/browser", |
| 37 "//ios/chrome/browser/browser_state", | 38 "//ios/chrome/browser/browser_state", |
| 38 "//ios/web", | 39 "//ios/web", |
| 39 "//net", | 40 "//net", |
| 40 "//url", | 41 "//url", |
| 41 ] | 42 ] |
| 42 public_deps = [ | 43 public_deps = [ |
| 43 "//ios/chrome/browser/dom_distiller", | 44 "//ios/chrome/browser/dom_distiller", |
| 44 ] | 45 ] |
| 45 } | 46 } |
| 46 | 47 |
| 47 source_set("unit_tests") { | 48 source_set("unit_tests") { |
| 48 testonly = true | 49 testonly = true |
| 49 sources = [ | 50 sources = [ |
| 50 "offline_url_utils_unittest.cc", | 51 "offline_url_utils_unittest.cc", |
| 51 "url_downloader_unittest.cc", | 52 "url_downloader_unittest.cc", |
| 52 ] | 53 ] |
| 53 deps = [ | 54 deps = [ |
| 54 ":reading_list", | 55 ":reading_list", |
| 55 "//base", | 56 "//base", |
| 56 "//base/test:test_support", | 57 "//base/test:test_support", |
| 57 "//components/reading_list", | 58 "//components/reading_list/ios", |
| 58 "//ios/chrome/browser", | 59 "//ios/chrome/browser", |
| 59 "//ios/chrome/browser/dom_distiller", | 60 "//ios/chrome/browser/dom_distiller", |
| 60 "//ios/web:test_support", | 61 "//ios/web:test_support", |
| 61 "//testing/gtest", | 62 "//testing/gtest", |
| 62 "//url", | 63 "//url", |
| 63 ] | 64 ] |
| 64 } | 65 } |
| OLD | NEW |