Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(664)

Side by Side Diff: ios/chrome/browser/reading_list/BUILD.gn

Issue 2369303002: Reading List create protobuf store (Closed)
Patch Set: feedback Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 source_set("reading_list") {
6 sources = [
7 "reading_list_download_service.cc",
8 "reading_list_download_service.h",
9 "reading_list_download_service_factory.cc",
10 "reading_list_download_service_factory.h",
11 "reading_list_entry.cc",
12 "reading_list_entry.h",
13 "reading_list_model.cc",
14 "reading_list_model.h",
15 "reading_list_model_bridge_observer.h",
16 "reading_list_model_bridge_observer.mm",
17 "reading_list_model_factory.cc",
18 "reading_list_model_factory.h",
19 "reading_list_model_impl.cc",
20 "reading_list_model_impl.h",
21 "reading_list_model_observer.h",
22 "reading_list_model_observer.h",
23 "reading_list_model_storage.h",
24 "reading_list_pref_names.cc",
25 "reading_list_pref_names.h",
26 "reading_list_store.cc",
27 "reading_list_store.h",
28 "url_downloader.cc",
29 "url_downloader.h",
30 ]
31
32 deps = [
33 "//base",
34 "//components/keyed_service/core",
35 "//components/keyed_service/ios",
36 "//components/leveldb_proto",
37 "//components/pref_registry",
38 "//components/prefs",
39 "//ios/chrome/browser/reading_list/proto",
40 "//ios/web",
41 "//net",
42 "//url",
43 ]
44 }
45
46 source_set("reading_list_tests") {
47 testonly = true
48 sources = [
49 "reading_list_entry_unittest.cc",
50 "reading_list_model_unittest.cc",
51 "reading_list_store_unittest.cc",
52 "url_downloader_unittest.cc",
53 ]
54 deps = [
55 ":reading_list",
56 "//base",
57 "//base/test:test_support",
58 "//components/leveldb_proto:test_support",
59 "//ios/chrome/browser",
60 "//ios/chrome/browser/reading_list/proto",
61 "//ios/web:test_support",
62 "//testing/gtest",
63 ]
64 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698