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

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

Issue 2589843002: Upstream Chrome on iOS source code [11/11]. (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « ios/chrome/browser/ui/fancy_ui/BUILD.gn ('k') | ios/chrome/browser/ui/first_run/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/ui/find_bar/BUILD.gn
diff --git a/ios/chrome/browser/ui/find_bar/BUILD.gn b/ios/chrome/browser/ui/find_bar/BUILD.gn
index ae4b3e844674a18a8f21b5c7d26338a8c760e220..1d2280e936fd2acb06c2006fd532495551a36cb3 100644
--- a/ios/chrome/browser/ui/find_bar/BUILD.gn
+++ b/ios/chrome/browser/ui/find_bar/BUILD.gn
@@ -56,3 +56,49 @@ bundle_data("resources") {
"{{bundle_resources_dir}}/{{source_file_part}}",
]
}
+
+source_set("find_bar") {
+ sources = [
+ "find_bar_controller_ios.h",
+ "find_bar_controller_ios.mm",
+ "find_bar_touch_forwarding_view.h",
+ "find_bar_touch_forwarding_view.mm",
+ "find_bar_view.h",
+ "find_bar_view.mm",
+ ]
+ deps = [
+ "//base",
+ "//base:i18n",
+ "//components/strings",
+ "//ios/chrome/app/strings",
+ "//ios/chrome/browser/find_in_page",
+ "//ios/chrome/browser/ui",
+ "//ios/chrome/browser/ui/commands",
+ "//ios/chrome/browser/ui/find_bar:resources",
+ "//ios/third_party/material_components_ios",
+ "//ui/base",
+ "//ui/gfx",
+ ]
+ libs = [ "UIKit.framework" ]
+}
+
+source_set("eg_tests") {
+ testonly = true
+ sources = [
+ "find_in_page_egtest.mm",
+ ]
+ deps = [
+ "//base",
+ "//components/strings",
+ "//ios/chrome/app/strings",
+ "//ios/chrome/browser/find_in_page",
+ "//ios/chrome/browser/ui/find_bar",
+ "//ios/chrome/browser/ui/tools_menu",
+ "//ios/chrome/test/app:test_support",
+ "//ios/chrome/test/earl_grey:test_support",
+ "//ios/testing:ios_test_support",
+ "//ios/web:test_support",
+ "//ui/base",
+ ]
+ libs = [ "XCTest.framework" ]
+}
« no previous file with comments | « ios/chrome/browser/ui/fancy_ui/BUILD.gn ('k') | ios/chrome/browser/ui/first_run/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698