blob: 0290d08ed0bffaadbd1940e40c34aba9479d99b8 [file] [log] [blame]
# Copyright 2016 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
source_set("reading_list") {
sources = [
"offline_url_utils.cc",
"offline_url_utils.h",
"reading_list_download_service.cc",
"reading_list_download_service.h",
"reading_list_download_service_factory.cc",
"reading_list_download_service_factory.h",
"reading_list_entry.h",
"reading_list_model.h",
"reading_list_model_bridge_observer.h",
"reading_list_model_factory.cc",
"reading_list_model_factory.h",
"reading_list_model_impl.h",
"reading_list_model_observer.h",
"reading_list_model_storage.h",
"reading_list_pref_names.h",
"reading_list_store.h",
"reading_list_store_delegate.h",
"reading_list_web_state_observer.h",
"reading_list_web_state_observer.mm",
"url_downloader.cc",
"url_downloader.h",
]
deps = [
"//base",
"//components/keyed_service/core",
"//components/keyed_service/ios",
"//components/pref_registry",
"//components/prefs",
"//components/reading_list",
"//ios/chrome/browser",
"//ios/chrome/browser/browser_state",
"//ios/web",
"//net",
"//url",
]
public_deps = [
"//ios/chrome/browser/dom_distiller",
]
}
source_set("unit_tests") {
configs += [ "//build/config/compiler:enable_arc" ]
testonly = true
sources = [
"offline_url_utils_unittest.cc",
"url_downloader_unittest.mm",
]
deps = [
":reading_list",
"//base",
"//base/test:test_support",
"//components/reading_list",
"//ios/chrome/browser",
"//ios/chrome/browser/dom_distiller",
"//ios/web:test_support",
"//testing/gtest",
"//url",
]
}