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

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

Issue 2443373002: Split //ios/chrome/browser in multiple targets. (Closed)
Patch Set: Rebase Created 4 years, 1 month 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
« no previous file with comments | « ios/chrome/browser/prefs/browser_prefs.mm ('k') | ios/chrome/browser/rlz/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_storage.h",
23 "reading_list_model_storage_defaults.h",
24 "reading_list_model_storage_defaults.mm",
25 "url_downloader.cc",
26 "url_downloader.h",
27 ]
28 deps = [
29 "//base",
30 "//components/keyed_service/core",
31 "//components/keyed_service/ios",
32 "//ios/chrome/browser:browser_no_public_deps",
33 "//ios/chrome/browser/browser_state",
34 "//ios/web",
35 "//net",
36 "//url",
37 ]
38 public_deps = [
39 "//ios/chrome/browser/dom_distiller",
40 ]
41 }
42
43 source_set("unit_tests") {
44 testonly = true
45 sources = [
46 "reading_list_entry_unittest.cc",
47 "reading_list_model_storage_unittest.mm",
48 "reading_list_model_unittest.cc",
49 "url_downloader_unittest.cc",
50 ]
51 deps = [
52 ":reading_list",
53 "//base",
54 "//base/test:test_support",
55 "//ios/chrome/browser",
56 "//ios/chrome/browser/dom_distiller",
57 "//ios/web:test_support",
58 "//testing/gtest",
59 ]
60 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/prefs/browser_prefs.mm ('k') | ios/chrome/browser/rlz/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698