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

Unified Diff: blimp/engine/BUILD.gn

Issue 1929723002: [Blimp] Adds blimp engine browser test framework and LoadUrl test. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address Kevin's comments Created 4 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: blimp/engine/BUILD.gn
diff --git a/blimp/engine/BUILD.gn b/blimp/engine/BUILD.gn
index b54e95cde5f54b1b4d30af9643e29da7097a9773..937d0a7f8918755772de5d2d7c418d2b35152401 100644
--- a/blimp/engine/BUILD.gn
+++ b/blimp/engine/BUILD.gn
@@ -91,6 +91,10 @@ source_set("app_config") {
deps = [
":app_switches",
"//base",
+ "//cc",
+ "//content/public/common",
+ "//ui/gl",
+ "//ui/native_theme",
]
}
@@ -311,6 +315,20 @@ mojom("blob_channel_mojo") {
]
}
+source_set("test_support") {
+ testonly = true
+
+ sources = [
+ "app/test_content_main_delegate.cc",
+ "app/test_content_main_delegate.h",
+ ]
+
+ deps = [
+ ":app",
+ "//base",
+ ]
+}
+
source_set("app_unit_tests") {
testonly = true
@@ -381,6 +399,7 @@ if (is_linux) {
deps = [
":app",
+ ":app_config",
":pak",
"//base",
"//blimp/net",

Powered by Google App Engine
This is Rietveld 408576698