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

Unified Diff: mojo/edk/test/BUILD.gn

Issue 799113004: Update mojo sdk to rev 59145288bae55b0fce4276b017df6a1117bcf00f (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add mojo's ply to checklicenses whitelist Created 6 years 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 | « mojo/edk/system/waiter.cc ('k') | mojo/public/VERSION » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/edk/test/BUILD.gn
diff --git a/mojo/edk/test/BUILD.gn b/mojo/edk/test/BUILD.gn
index 3cf8ae88c087333e12c0f3ed1b2c18ed5d39004f..8d032ad86a30111392d03aa00a972f16dbb09fb0 100644
--- a/mojo/edk/test/BUILD.gn
+++ b/mojo/edk/test/BUILD.gn
@@ -21,16 +21,14 @@ mojo_edk_source_set("test_support") {
"//testing/gtest",
]
- mojo_edk_deps = [
- "mojo/edk/system",
- ]
+ mojo_edk_deps = [ "mojo/edk/system" ]
}
# GYP version: mojo/edk/mojo_edk.gyp:mojo_run_all_unittests
mojo_edk_source_set("run_all_unittests") {
testonly = true
sources = [
- "run_all_unittests.cc"
+ "run_all_unittests.cc",
]
deps = [
@@ -40,13 +38,9 @@ mojo_edk_source_set("run_all_unittests") {
"//testing/gtest",
]
- mojo_edk_deps = [
- "mojo/edk/system",
- ]
-
- mojo_sdk_deps = [
- "mojo/public/c/test_support",
- ]
+ mojo_edk_deps = [ "mojo/edk/system" ]
+
+ mojo_sdk_deps = [ "mojo/public/c/test_support" ]
}
# GYP version: mojo/edk/mojo_edk.gyp:mojo_run_all_perftests
@@ -58,13 +52,9 @@ mojo_edk_source_set("run_all_perftests") {
"//base/test:test_support",
]
- mojo_edk_deps = [
- "mojo/edk/system",
- ]
+ mojo_edk_deps = [ "mojo/edk/system" ]
- mojo_sdk_deps = [
- "mojo/public/c/test_support",
- ]
+ mojo_sdk_deps = [ "mojo/public/c/test_support" ]
sources = [
"run_all_perftests.cc",
@@ -79,12 +69,45 @@ mojo_edk_source_set("test_support_impl") {
"//base/test:test_support",
]
- mojo_sdk_deps = [
- "mojo/public/c/test_support",
- ]
+ mojo_sdk_deps = [ "mojo/public/c/test_support" ]
sources = [
"test_support_impl.cc",
"test_support_impl.h",
]
}
+
+# Public SDK test targets follow. These targets are not defined within the
+# public SDK itself as running the unittests requires the EDK.
+
+# GYP version: mojo/mojo_base.gyp:mojo_public_application_unittests
+test("mojo_public_application_unittests") {
+ deps = [
+ ":run_all_unittests",
+ "../../public/cpp/application/tests",
+ ]
+}
+
+# GYP version: mojo/mojo_base.gyp:mojo_public_bindings_unittests
+test("mojo_public_bindings_unittests") {
+ deps = [
+ ":run_all_unittests",
+ "../../public/cpp/bindings/tests",
+ ]
+}
+
+# GYP version: mojo/mojo_base.gyp:mojo_public_environment_unittests
+test("mojo_public_environment_unittests") {
+ deps = [
+ ":run_all_unittests",
+ "../../public/cpp/environment/tests",
+ ]
+}
+
+# GYP version: mojo/mojo_base.gyp:mojo_public_system_perftests
+test("mojo_public_system_perftests") {
+ deps = [
+ ":run_all_perftests",
+ "../../public/c/system/tests:perftests",
+ ]
+}
« no previous file with comments | « mojo/edk/system/waiter.cc ('k') | mojo/public/VERSION » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698