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

Unified Diff: chromecast/app/BUILD.gn

Issue 2617713002: [WIP] Add DCHECK for mojo::edk::Init().
Patch Set: test Created 3 years, 11 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 | « chromecast/BUILD.gn ('k') | chromecast/app/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/app/BUILD.gn
diff --git a/chromecast/app/BUILD.gn b/chromecast/app/BUILD.gn
index cf2b992f0a471c9930ced43355c478ee3aeb0d86..2ff27f6751164b4b0689b77477b8ad3173885493 100644
--- a/chromecast/app/BUILD.gn
+++ b/chromecast/app/BUILD.gn
@@ -60,6 +60,7 @@ source_set("test_support") {
testonly = true
sources = [
"cast_test_launcher.cc",
+ "cast_test_launcher.h",
]
deps = [
@@ -68,7 +69,31 @@ source_set("test_support") {
"//base/test:test_support",
"//chromecast/base",
"//content/test:test_support",
+ ]
+}
+
+source_set("unittests_main") {
+ testonly = true
+ sources = [
+ "cast_unittests_main.cc",
+ ]
+
+ deps = [
+ ":test_support",
+ "//base/test:test_support",
"//mojo/edk/embedder:headers",
+ "//mojo/edk/test:test_support",
+ ]
+}
+
+source_set("browsertests_main") {
+ testonly = true
+ sources = [
+ "cast_browsertests_main.cc",
+ ]
+
+ deps = [
+ ":test_support",
]
}
« no previous file with comments | « chromecast/BUILD.gn ('k') | chromecast/app/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698