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

Unified Diff: chrome/test/BUILD.gn

Issue 2834693002: Mus Browser Tests (Closed)
Patch Set: Address Comments Created 3 years, 8 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 | chrome/test/base/mash_browser_tests_main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/BUILD.gn
diff --git a/chrome/test/BUILD.gn b/chrome/test/BUILD.gn
index bc1c20b0ee72d2c77160aac518ee071be111a3b1..cf05594fbc64fb1403a122c70c340e86fe5cc984 100644
--- a/chrome/test/BUILD.gn
+++ b/chrome/test/BUILD.gn
@@ -1192,6 +1192,7 @@ static_library("browser_tests_runner") {
data_deps = [
":mash_browser_tests_catalog_copy",
+ ":mus_browser_tests_catalog_copy",
"//mash/session",
]
} else {
@@ -5238,6 +5239,46 @@ if (is_chromeos && enable_package_mash_services) {
":mash_browser_tests_catalog",
]
}
+
+ group("mus_browser_tests_run") {
+ testonly = true
+ deps = [
+ ":mus_browser_tests",
+ ]
+ }
+
+ group("mus_browser_tests") {
+ testonly = true
+ data_deps = [
+ ":browser_tests",
+ "//chrome/app/mash:mash_service_overrides",
+ ]
+ }
+
+ service_manifest("mus_browser_tests_manifest") {
+ name = "mus_browser_tests"
+
+ source = "base/mus_browser_tests_manifest.json"
+ packaged_services = [ "//services/ui:manifest" ]
+ }
+
+ catalog("mus_browser_tests_catalog") {
+ testonly = true
+ embedded_services = [ ":mus_browser_tests_manifest" ]
+ standalone_services = [ "//services/tracing:manifest" ]
+ catalog_deps = [ "//chrome/app:catalog_for_mus" ]
+ }
+
+ copy("mus_browser_tests_catalog_copy") {
+ testonly = true
+ sources = get_target_outputs(":mus_browser_tests_catalog")
+ outputs = [
+ "${root_out_dir}/mus_browser_tests_catalog.json",
+ ]
+ deps = [
+ ":mus_browser_tests_catalog",
+ ]
+ }
}
if (is_win) {
« no previous file with comments | « no previous file | chrome/test/base/mash_browser_tests_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698