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

Unified Diff: ios/web/test/BUILD.gn

Issue 2898733003: Split up ios/web:test_support. (Closed)
Patch Set: more header guards Created 3 years, 7 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
Index: ios/web/test/BUILD.gn
diff --git a/ios/web/test/BUILD.gn b/ios/web/test/BUILD.gn
index 5ddfc4db6dc4fdbdf4fb6fd7de53adb225af2953..9ccc5527cd9d2c5bcc03ba2e3f016ba9800f6659 100644
--- a/ios/web/test/BUILD.gn
+++ b/ios/web/test/BUILD.gn
@@ -43,3 +43,42 @@ grit("resources") {
"root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir),
]
}
+
+source_set("test_support") {
+ testonly = true
+
+ deps = [
+ ":test_constants",
+ "//base",
+ "//base/test:test_support",
+ "//ios/web:web",
+ "//ios/web/public/test/fakes",
+ "//ios/web/public/test/http_server",
+ "//testing/gtest",
+ "//third_party/ocmock",
+ "//ui/base",
+ ]
+
+ sources = [
+ "crw_fake_web_controller_observer.h",
+ "crw_fake_web_controller_observer.mm",
+ "test_web_thread.cc",
+ "test_web_thread_bundle.cc",
+ "url_test_util.mm",
+ "web_int_test.h",
+ "web_int_test.mm",
+ "web_test_suite.mm",
+ "web_test_with_web_controller.h",
+ "web_test_with_web_controller.mm",
+ "wk_web_view_crash_utils.h",
+ "wk_web_view_crash_utils.mm",
+ ]
+}
+
+source_set("test_constants") {
+ testonly = true
+ sources = [
+ "test_url_constants.cc",
+ "test_url_constants.h",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698