mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
255 lines
7.6 KiB
Plaintext
255 lines
7.6 KiB
Plaintext
# Copyright 2016 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
source_set("history") {
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
sources = [
|
|
"clear_browsing_bar.h",
|
|
"clear_browsing_bar.mm",
|
|
"favicon_view.h",
|
|
"favicon_view.mm",
|
|
"favicon_view_provider.h",
|
|
"favicon_view_provider.mm",
|
|
"history_coordinator.h",
|
|
"history_coordinator.mm",
|
|
"history_panel_view_controller.h",
|
|
"history_panel_view_controller.mm",
|
|
"history_search_view.h",
|
|
"history_search_view.mm",
|
|
"history_search_view_controller.h",
|
|
"history_search_view_controller.mm",
|
|
"ios_browsing_history_driver.h",
|
|
"ios_browsing_history_driver.mm",
|
|
"legacy_history_collection_view_controller.h",
|
|
"legacy_history_collection_view_controller.mm",
|
|
"legacy_history_entries_status_item.h",
|
|
"legacy_history_entries_status_item.mm",
|
|
"legacy_history_entry_item.h",
|
|
"legacy_history_entry_item.mm",
|
|
]
|
|
deps = [
|
|
":history_base_feature",
|
|
":history_ui",
|
|
"//base",
|
|
"//base:i18n",
|
|
"//components/browser_sync",
|
|
"//components/browsing_data/core",
|
|
"//components/favicon/core",
|
|
"//components/favicon_base",
|
|
"//components/history/core/browser",
|
|
"//components/keyed_service/core",
|
|
"//components/prefs",
|
|
"//components/query_parser",
|
|
"//components/strings",
|
|
"//components/sync/protocol",
|
|
"//components/url_formatter",
|
|
"//ios/chrome/app/strings",
|
|
"//ios/chrome/browser",
|
|
"//ios/chrome/browser/browser_state",
|
|
"//ios/chrome/browser/favicon",
|
|
"//ios/chrome/browser/history",
|
|
"//ios/chrome/browser/metrics:metrics_internal",
|
|
"//ios/chrome/browser/signin",
|
|
"//ios/chrome/browser/sync",
|
|
"//ios/chrome/browser/ui",
|
|
"//ios/chrome/browser/ui/collection_view",
|
|
"//ios/chrome/browser/ui/colors",
|
|
"//ios/chrome/browser/ui/commands",
|
|
"//ios/chrome/browser/ui/context_menu",
|
|
"//ios/chrome/browser/ui/coordinators:chrome_coordinators",
|
|
"//ios/chrome/browser/ui/icons",
|
|
"//ios/chrome/browser/ui/keyboard",
|
|
"//ios/chrome/browser/ui/list_model",
|
|
"//ios/chrome/browser/ui/material_components",
|
|
"//ios/chrome/browser/ui/ntp/recent_tabs/views",
|
|
"//ios/chrome/browser/ui/popup_menu",
|
|
"//ios/chrome/browser/ui/settings",
|
|
"//ios/chrome/browser/ui/table_view",
|
|
"//ios/chrome/browser/ui/table_view/cells",
|
|
"//ios/chrome/browser/ui/util",
|
|
"//ios/chrome/common",
|
|
"//ios/third_party/material_components_ios",
|
|
"//ios/third_party/material_roboto_font_loader_ios",
|
|
"//ios/web",
|
|
"//net",
|
|
"//skia",
|
|
"//ui/base",
|
|
"//url",
|
|
]
|
|
libs = [
|
|
"MobileCoreServices.framework",
|
|
"QuartzCore.framework",
|
|
"UIKit.framework",
|
|
]
|
|
}
|
|
|
|
source_set("history_ui") {
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
sources = [
|
|
"history_consumer.h",
|
|
"history_entries_status_item.h",
|
|
"history_entries_status_item.mm",
|
|
"history_entries_status_item_delegate.h",
|
|
"history_entry_inserter.h",
|
|
"history_entry_inserter.mm",
|
|
"history_entry_item.h",
|
|
"history_entry_item.mm",
|
|
"history_entry_item_delegate.h",
|
|
"history_entry_item_interface.h",
|
|
"history_local_commands.h",
|
|
"history_table_view_controller.h",
|
|
"history_table_view_controller.mm",
|
|
"history_transitioning_delegate.h",
|
|
"history_transitioning_delegate.mm",
|
|
"history_ui_constants.h",
|
|
"history_ui_constants.mm",
|
|
"history_util.h",
|
|
"history_util.mm",
|
|
]
|
|
deps = [
|
|
"//base",
|
|
"//base:i18n",
|
|
"//components/browsing_data/core",
|
|
"//components/history/core/browser",
|
|
"//components/strings",
|
|
"//components/url_formatter",
|
|
"//components/url_formatter",
|
|
"//ios/chrome/app/strings",
|
|
"//ios/chrome/browser/browser_state",
|
|
"//ios/chrome/browser/metrics:metrics_internal",
|
|
"//ios/chrome/browser/sync",
|
|
"//ios/chrome/browser/ui",
|
|
"//ios/chrome/browser/ui/collection_view/cells",
|
|
"//ios/chrome/browser/ui/context_menu",
|
|
"//ios/chrome/browser/ui/list_model",
|
|
"//ios/chrome/browser/ui/table_view",
|
|
"//ios/chrome/browser/ui/table_view:presentation",
|
|
"//ios/chrome/browser/ui/table_view:styler",
|
|
"//ios/chrome/browser/ui/table_view/cells",
|
|
"//ios/chrome/browser/ui/util",
|
|
"//ui/base",
|
|
]
|
|
}
|
|
|
|
source_set("history_base_feature") {
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
sources = [
|
|
"history_base_feature.h",
|
|
"history_base_feature.mm",
|
|
]
|
|
deps = [
|
|
"//base",
|
|
]
|
|
}
|
|
|
|
source_set("unit_tests") {
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
testonly = true
|
|
sources = [
|
|
"favicon_view_provider_unittest.mm",
|
|
"history_collection_view_controller_unittest.mm",
|
|
"history_entry_inserter_unittest.mm",
|
|
"history_search_view_controller_unittest.mm",
|
|
"legacy_history_entries_status_item_unittest.mm",
|
|
"legacy_history_entry_item_unittest.mm",
|
|
]
|
|
deps = [
|
|
":history",
|
|
":history_ui",
|
|
":resources_unit_tests",
|
|
"//base",
|
|
"//base/test:test_support",
|
|
"//components/browser_sync",
|
|
"//components/favicon/core",
|
|
"//components/favicon/core/test:test_support",
|
|
"//components/favicon_base",
|
|
"//components/history/core/browser",
|
|
"//components/keyed_service/core",
|
|
"//components/sessions",
|
|
"//components/strings",
|
|
"//ios/chrome/app/strings",
|
|
"//ios/chrome/browser",
|
|
"//ios/chrome/browser/browser_state:test_support",
|
|
"//ios/chrome/browser/history",
|
|
"//ios/chrome/browser/signin",
|
|
"//ios/chrome/browser/signin:test_support",
|
|
"//ios/chrome/browser/sync:sync",
|
|
"//ios/chrome/browser/sync:test_support",
|
|
"//ios/chrome/browser/ui",
|
|
"//ios/chrome/browser/ui:feature_flags",
|
|
"//ios/chrome/browser/ui/collection_view",
|
|
"//ios/chrome/browser/ui/list_model",
|
|
"//ios/chrome/browser/ui/util",
|
|
"//ios/chrome/common",
|
|
"//ios/chrome/test:test_support",
|
|
"//ios/web",
|
|
"//ios/web/public/test",
|
|
"//skia",
|
|
"//testing/gmock",
|
|
"//testing/gtest",
|
|
"//third_party/ocmock",
|
|
"//ui/base",
|
|
"//ui/gfx",
|
|
"//url",
|
|
]
|
|
}
|
|
|
|
bundle_data("resources_unit_tests") {
|
|
visibility = [
|
|
":unit_tests",
|
|
":unit_tests_arc",
|
|
]
|
|
testonly = true
|
|
sources = [
|
|
"//ios/chrome/test/data/favicon/test_favicon.png",
|
|
]
|
|
outputs = [
|
|
"{{bundle_resources_dir}}/" +
|
|
"ios/chrome/test/data/favicon/{{source_file_part}}",
|
|
]
|
|
}
|
|
|
|
source_set("eg_tests") {
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
testonly = true
|
|
sources = [
|
|
"history_ui_egtest.mm",
|
|
]
|
|
deps = [
|
|
":history",
|
|
":history_ui",
|
|
"//base",
|
|
"//components/browsing_data/core",
|
|
"//components/prefs",
|
|
"//components/strings",
|
|
"//components/url_formatter:url_formatter",
|
|
"//ios/chrome/app/strings",
|
|
"//ios/chrome/browser",
|
|
"//ios/chrome/browser/browser_state",
|
|
"//ios/chrome/browser/ui:ui",
|
|
"//ios/chrome/browser/ui/authentication:authentication_ui",
|
|
"//ios/chrome/browser/ui/authentication:eg_test_support",
|
|
"//ios/chrome/browser/ui/settings",
|
|
"//ios/chrome/browser/ui/table_view/cells",
|
|
"//ios/chrome/browser/ui/tools_menu",
|
|
"//ios/chrome/browser/ui/tools_menu/public",
|
|
"//ios/chrome/browser/ui/util",
|
|
"//ios/chrome/common",
|
|
"//ios/chrome/test/app:test_support",
|
|
"//ios/chrome/test/earl_grey:test_support",
|
|
"//ios/public/provider/chrome/browser/signin",
|
|
"//ios/public/provider/chrome/browser/signin:test_support",
|
|
"//ios/testing:ios_test_support",
|
|
"//ios/third_party/earl_grey:earl_grey+link",
|
|
"//ios/web/public/test",
|
|
"//ios/web/public/test/http_server",
|
|
"//net",
|
|
"//ui/base",
|
|
]
|
|
libs = [
|
|
"UIKit.framework",
|
|
"XCTest.framework",
|
|
]
|
|
}
|