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

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

Issue 2654433007: [ios] Moves find-in-page code out of Tab and into FindTabHelper. (Closed)
Patch Set: Review. Created 3 years, 10 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
« no previous file with comments | « no previous file | ios/chrome/browser/find_in_page/find_in_page_controller.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/find_in_page/BUILD.gn
diff --git a/ios/chrome/browser/find_in_page/BUILD.gn b/ios/chrome/browser/find_in_page/BUILD.gn
index 7c2932616964f7ad520429916f2d9fb03d95f43a..2ea3d5a96b7778976432064b208954773447db01 100644
--- a/ios/chrome/browser/find_in_page/BUILD.gn
+++ b/ios/chrome/browser/find_in_page/BUILD.gn
@@ -11,6 +11,8 @@ source_set("find_in_page") {
"find_in_page_controller.mm",
"find_in_page_model.h",
"find_in_page_model.mm",
+ "find_tab_helper.h",
+ "find_tab_helper.mm",
"js_findinpage_manager.h",
"js_findinpage_manager.mm",
]
@@ -30,3 +32,17 @@ js_compile_unchecked("injected_js") {
"resources/find_in_page.js",
]
}
+
+source_set("unit_tests") {
+ testonly = true
+ configs += [ "//build/config/compiler:enable_arc" ]
+ sources = [
+ "find_tab_helper_unittest.mm",
+ ]
+ deps = [
+ ":find_in_page",
+ "//base",
+ "//ios/web",
+ "//ios/web:test_support",
+ ]
+}
« no previous file with comments | « no previous file | ios/chrome/browser/find_in_page/find_in_page_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698