| Index: ios/chrome/browser/ui/bookmarks/BUILD.gn
|
| diff --git a/ios/chrome/browser/ui/bookmarks/BUILD.gn b/ios/chrome/browser/ui/bookmarks/BUILD.gn
|
| index 4f2fb6bc7bafc244cd34e3b398a4bed6808880dc..627dca37448593cef1b6e24f80f7304a2bd46f19 100644
|
| --- a/ios/chrome/browser/ui/bookmarks/BUILD.gn
|
| +++ b/ios/chrome/browser/ui/bookmarks/BUILD.gn
|
| @@ -78,3 +78,180 @@ bundle_data("resources") {
|
| "{{bundle_resources_dir}}/{{source_file_part}}",
|
| ]
|
| }
|
| +
|
| +source_set("bookmarks") {
|
| + sources = [
|
| + "bookmark_all_collection_view.h",
|
| + "bookmark_all_collection_view.mm",
|
| + "bookmark_collection_cells.h",
|
| + "bookmark_collection_cells.mm",
|
| + "bookmark_collection_view.h",
|
| + "bookmark_collection_view.mm",
|
| + "bookmark_collection_view_background.h",
|
| + "bookmark_collection_view_background.mm",
|
| + "bookmark_controller_factory.h",
|
| + "bookmark_controller_factory.mm",
|
| + "bookmark_edit_view_controller.h",
|
| + "bookmark_edit_view_controller.mm",
|
| + "bookmark_elevated_toolbar.h",
|
| + "bookmark_elevated_toolbar.mm",
|
| + "bookmark_extended_button.h",
|
| + "bookmark_extended_button.mm",
|
| + "bookmark_folder_collection_view.h",
|
| + "bookmark_folder_collection_view.mm",
|
| + "bookmark_folder_editor_view_controller.h",
|
| + "bookmark_folder_editor_view_controller.mm",
|
| + "bookmark_folder_table_view_cell.h",
|
| + "bookmark_folder_table_view_cell.mm",
|
| + "bookmark_folder_view_controller.h",
|
| + "bookmark_folder_view_controller.mm",
|
| + "bookmark_home_handset_view_controller.h",
|
| + "bookmark_home_handset_view_controller.mm",
|
| + "bookmark_home_primary_view.h",
|
| + "bookmark_home_tablet_ntp_controller.h",
|
| + "bookmark_home_tablet_ntp_controller.mm",
|
| + "bookmark_home_view_controller.h",
|
| + "bookmark_home_view_controller.mm",
|
| + "bookmark_home_waiting_view.h",
|
| + "bookmark_home_waiting_view.mm",
|
| + "bookmark_interaction_controller.h",
|
| + "bookmark_interaction_controller.mm",
|
| + "bookmark_menu_cell.h",
|
| + "bookmark_menu_cell.mm",
|
| + "bookmark_menu_item.h",
|
| + "bookmark_menu_item.mm",
|
| + "bookmark_menu_view.h",
|
| + "bookmark_menu_view.mm",
|
| + "bookmark_model_bridge_observer.h",
|
| + "bookmark_model_bridge_observer.mm",
|
| + "bookmark_navigation_controller.h",
|
| + "bookmark_navigation_controller.mm",
|
| + "bookmark_panel_view.h",
|
| + "bookmark_panel_view.mm",
|
| + "bookmark_position_cache.h",
|
| + "bookmark_position_cache.mm",
|
| + "bookmark_promo_cell.h",
|
| + "bookmark_promo_cell.mm",
|
| + "bookmark_promo_controller.h",
|
| + "bookmark_promo_controller.mm",
|
| + "bookmark_utils_ios.h",
|
| + "bookmark_utils_ios.mm",
|
| + "undo_manager_bridge_observer.h",
|
| + "undo_manager_bridge_observer.mm",
|
| + "undo_manager_wrapper.h",
|
| + "undo_manager_wrapper.mm",
|
| + ]
|
| + deps = [
|
| + "//base",
|
| + "//base:i18n",
|
| + "//components/bookmarks/browser",
|
| + "//components/favicon/core",
|
| + "//components/favicon_base",
|
| + "//components/pref_registry",
|
| + "//components/prefs",
|
| + "//components/query_parser",
|
| + "//components/signin/core/browser",
|
| + "//components/strings",
|
| + "//components/undo",
|
| + "//components/url_formatter",
|
| + "//google_apis",
|
| + "//ios/chrome/app/strings",
|
| + "//ios/chrome/app/theme",
|
| + "//ios/chrome/browser",
|
| + "//ios/chrome/browser/bookmarks",
|
| + "//ios/chrome/browser/bookmarks:bookmarks_utils",
|
| + "//ios/chrome/browser/browser_state",
|
| + "//ios/chrome/browser/favicon",
|
| + "//ios/chrome/browser/metrics:metrics_internal",
|
| + "//ios/chrome/browser/signin",
|
| + "//ios/chrome/browser/tabs",
|
| + "//ios/chrome/browser/ui",
|
| + "//ios/chrome/browser/ui/alert_coordinator",
|
| + "//ios/chrome/browser/ui/bookmarks:resources",
|
| + "//ios/chrome/browser/ui/bookmarks/bars",
|
| + "//ios/chrome/browser/ui/bookmarks/cells",
|
| + "//ios/chrome/browser/ui/collection_view",
|
| + "//ios/chrome/browser/ui/collection_view/cells",
|
| + "//ios/chrome/browser/ui/colors",
|
| + "//ios/chrome/browser/ui/commands",
|
| + "//ios/chrome/browser/ui/icons",
|
| + "//ios/chrome/browser/ui/keyboard",
|
| + "//ios/chrome/browser/ui/material_components",
|
| + "//ios/chrome/browser/ui/ntp",
|
| + "//ios/chrome/browser/undo",
|
| + "//ios/public/provider/chrome/browser",
|
| + "//ios/public/provider/chrome/browser/ui",
|
| + "//ios/third_party/material_components_ios",
|
| + "//ios/third_party/material_roboto_font_loader_ios",
|
| + "//ios/web",
|
| + "//skia",
|
| + "//ui/base",
|
| + "//ui/gfx",
|
| + "//url",
|
| + ]
|
| + allow_circular_includes_from = [
|
| + "//ios/chrome/browser/ui/bookmarks/bars",
|
| + "//ios/chrome/browser/ui/bookmarks/cells",
|
| + ]
|
| + libs = [
|
| + "CoreGraphics.framework",
|
| + "QuartzCore.framework",
|
| + "UIKit.framework",
|
| + ]
|
| +}
|
| +
|
| +source_set("unit_tests") {
|
| + testonly = true
|
| + sources = [
|
| + "bookmark_home_view_controller_unittest.mm",
|
| + "bookmark_ios_unittest.mm",
|
| + "bookmark_position_cache_unittest.mm",
|
| + "bookmark_utils_ios_unittest.mm",
|
| + ]
|
| + deps = [
|
| + ":bookmarks",
|
| + "//base",
|
| + "//components/bookmarks/browser",
|
| + "//components/bookmarks/test",
|
| + "//components/sync_preferences:test_support",
|
| + "//ios/chrome/browser",
|
| + "//ios/chrome/browser/bookmarks",
|
| + "//ios/chrome/browser/browser_state:test_support",
|
| + "//ios/web:test_support",
|
| + "//testing/gtest",
|
| + ]
|
| +}
|
| +
|
| +source_set("eg_tests") {
|
| + testonly = true
|
| + sources = [
|
| + "bookmarks_egtest.mm",
|
| + ]
|
| + deps = [
|
| + "//base",
|
| + "//components/bookmarks/browser",
|
| + "//components/prefs",
|
| + "//components/strings",
|
| + "//ios/chrome/app/strings",
|
| + "//ios/chrome/browser",
|
| + "//ios/chrome/browser/bookmarks",
|
| + "//ios/chrome/browser/bookmarks:bookmarks_utils",
|
| + "//ios/chrome/browser/browser_state",
|
| + "//ios/chrome/browser/ui",
|
| + "//ios/chrome/browser/ui/commands",
|
| + "//ios/chrome/browser/ui/toolbar",
|
| + "//ios/chrome/browser/ui/tools_menu",
|
| + "//ios/chrome/test/app:test_support",
|
| + "//ios/chrome/test/earl_grey:test_support",
|
| + "//ios/public/provider/chrome/browser/signin:test_support",
|
| + "//ios/testing:ios_test_support",
|
| + "//ios/third_party/earl_grey",
|
| + "//ios/web:test_support",
|
| + "//ui/base",
|
| + "//url",
|
| + ]
|
| + libs = [
|
| + "UIKit.framework",
|
| + "XCTest.framework",
|
| + ]
|
| +}
|
|
|