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

Unified Diff: ios/chrome/browser/BUILD.gn

Issue 2369303002: Reading List create protobuf store (Closed)
Patch Set: make constructor private 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 side-by-side diff with in-line comments
Download patch
Index: ios/chrome/browser/BUILD.gn
diff --git a/ios/chrome/browser/BUILD.gn b/ios/chrome/browser/BUILD.gn
index 7583630ec9c8acd463cb370f177c912cd6917533..b8ee72cc9fc6726f4588187fe408dc65da2c2a74 100644
--- a/ios/chrome/browser/BUILD.gn
+++ b/ios/chrome/browser/BUILD.gn
@@ -366,8 +366,10 @@ source_set("browser") {
"reading_list/reading_list_model_observer.h",
"reading_list/reading_list_model_observer.h",
"reading_list/reading_list_model_storage.h",
- "reading_list/reading_list_model_storage_defaults.h",
- "reading_list/reading_list_model_storage_defaults.mm",
+ "reading_list/reading_list_pref_names.cc",
+ "reading_list/reading_list_pref_names.h",
+ "reading_list/reading_list_store.cc",
+ "reading_list/reading_list_store.h",
"reading_list/url_downloader.cc",
"reading_list/url_downloader.h",
"root_coordinator.h",
@@ -711,6 +713,7 @@ source_set("browser") {
"//components/web_resource",
"//components/webdata_services",
"//google_apis",
+ "//ios/chrome/browser/reading_list/proto",
"//ios/chrome/browser/variations:ios_chrome_ui_string_overrider_factory",
"//ios/chrome/common",
"//ios/chrome/common/app_group",
@@ -743,6 +746,8 @@ source_set("browser") {
allow_circular_includes_from = [ ":about_flags" ]
+ include_dirs = [ "$root_gen_dir/components/sync/protocol" ]
sdefresne 2016/10/06 15:11:24 You should never have to do that. I think you are
+
libs = [
"Accelerate.framework",
"CoreGraphics.framework",

Powered by Google App Engine
This is Rietveld 408576698