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

Side by Side 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 unified diff | Download patch
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//ios/web/js_compile.gni") 6 import("//ios/web/js_compile.gni")
7 import("//third_party/protobuf/proto_library.gni") 7 import("//third_party/protobuf/proto_library.gni")
8 8
9 declare_args() { 9 declare_args() {
10 google_test_gaia_client_id = "" 10 google_test_gaia_client_id = ""
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 "reading_list/reading_list_model.h", 359 "reading_list/reading_list_model.h",
360 "reading_list/reading_list_model_bridge_observer.h", 360 "reading_list/reading_list_model_bridge_observer.h",
361 "reading_list/reading_list_model_bridge_observer.mm", 361 "reading_list/reading_list_model_bridge_observer.mm",
362 "reading_list/reading_list_model_factory.cc", 362 "reading_list/reading_list_model_factory.cc",
363 "reading_list/reading_list_model_factory.h", 363 "reading_list/reading_list_model_factory.h",
364 "reading_list/reading_list_model_impl.cc", 364 "reading_list/reading_list_model_impl.cc",
365 "reading_list/reading_list_model_impl.h", 365 "reading_list/reading_list_model_impl.h",
366 "reading_list/reading_list_model_observer.h", 366 "reading_list/reading_list_model_observer.h",
367 "reading_list/reading_list_model_observer.h", 367 "reading_list/reading_list_model_observer.h",
368 "reading_list/reading_list_model_storage.h", 368 "reading_list/reading_list_model_storage.h",
369 "reading_list/reading_list_model_storage_defaults.h", 369 "reading_list/reading_list_pref_names.cc",
370 "reading_list/reading_list_model_storage_defaults.mm", 370 "reading_list/reading_list_pref_names.h",
371 "reading_list/reading_list_store.cc",
372 "reading_list/reading_list_store.h",
371 "reading_list/url_downloader.cc", 373 "reading_list/url_downloader.cc",
372 "reading_list/url_downloader.h", 374 "reading_list/url_downloader.h",
373 "root_coordinator.h", 375 "root_coordinator.h",
374 "root_coordinator.mm", 376 "root_coordinator.mm",
375 "search_engines/search_engines_util.cc", 377 "search_engines/search_engines_util.cc",
376 "search_engines/search_engines_util.h", 378 "search_engines/search_engines_util.h",
377 "search_engines/template_url_service_client_impl.cc", 379 "search_engines/template_url_service_client_impl.cc",
378 "search_engines/template_url_service_client_impl.h", 380 "search_engines/template_url_service_client_impl.h",
379 "search_engines/template_url_service_factory.cc", 381 "search_engines/template_url_service_factory.cc",
380 "search_engines/template_url_service_factory.h", 382 "search_engines/template_url_service_factory.h",
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
704 "//components/upload_list", 706 "//components/upload_list",
705 "//components/url_formatter", 707 "//components/url_formatter",
706 "//components/user_prefs", 708 "//components/user_prefs",
707 "//components/variations", 709 "//components/variations",
708 "//components/variations/service", 710 "//components/variations/service",
709 "//components/version_info", 711 "//components/version_info",
710 "//components/version_ui", 712 "//components/version_ui",
711 "//components/web_resource", 713 "//components/web_resource",
712 "//components/webdata_services", 714 "//components/webdata_services",
713 "//google_apis", 715 "//google_apis",
716 "//ios/chrome/browser/reading_list/proto",
714 "//ios/chrome/browser/variations:ios_chrome_ui_string_overrider_factory", 717 "//ios/chrome/browser/variations:ios_chrome_ui_string_overrider_factory",
715 "//ios/chrome/common", 718 "//ios/chrome/common",
716 "//ios/chrome/common/app_group", 719 "//ios/chrome/common/app_group",
717 "//ios/chrome/common/physical_web", 720 "//ios/chrome/common/physical_web",
718 "//ios/net", 721 "//ios/net",
719 "//ios/public/provider/chrome/browser", 722 "//ios/public/provider/chrome/browser",
720 "//ios/public/provider/web", 723 "//ios/public/provider/web",
721 "//ios/web", 724 "//ios/web",
722 "//ios/web:user_agent", 725 "//ios/web:user_agent",
723 "//ios/web/public/app", 726 "//ios/web/public/app",
(...skipping 12 matching lines...) Expand all
736 739
737 # TODO(crbug.com/459705): add support for resource packing and change the 740 # TODO(crbug.com/459705): add support for resource packing and change the
738 # dependency to be on the packed resources instead of the unpacked ones. 741 # dependency to be on the packed resources instead of the unpacked ones.
739 "//ios/chrome/app/resources", 742 "//ios/chrome/app/resources",
740 "//ios/chrome/app/strings", 743 "//ios/chrome/app/strings",
741 "//ios/chrome/app/theme", 744 "//ios/chrome/app/theme",
742 ] 745 ]
743 746
744 allow_circular_includes_from = [ ":about_flags" ] 747 allow_circular_includes_from = [ ":about_flags" ]
745 748
749 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
750
746 libs = [ 751 libs = [
747 "Accelerate.framework", 752 "Accelerate.framework",
748 "CoreGraphics.framework", 753 "CoreGraphics.framework",
749 "CoreLocation.framework", 754 "CoreLocation.framework",
750 "Foundation.framework", 755 "Foundation.framework",
751 "QuartzCore.framework", 756 "QuartzCore.framework",
752 "UIKit.framework", 757 "UIKit.framework",
753 ] 758 ]
754 759
755 if (enable_rlz) { 760 if (enable_rlz) {
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
867 "//ios/public/provider/chrome/browser", 872 "//ios/public/provider/chrome/browser",
868 "//ios/public/provider/chrome/browser:test_support", 873 "//ios/public/provider/chrome/browser:test_support",
869 "//ios/web", 874 "//ios/web",
870 "//net:test_support", 875 "//net:test_support",
871 "//testing/gmock", 876 "//testing/gmock",
872 "//testing/gtest", 877 "//testing/gtest",
873 "//ui/base", 878 "//ui/base",
874 "//url", 879 "//url",
875 ] 880 ]
876 } 881 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698