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

Unified Diff: mojom/BUILD.gn

Issue 1421193003: New Mojom Parser: Serialization. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Refactors TestSingleFileSerialization. Created 5 years, 1 month 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/tools/get_test_list.py ('k') | mojom/mojom_parser/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojom/BUILD.gn
diff --git a/mojom/BUILD.gn b/mojom/BUILD.gn
index 9ef24cb5cd084147657d3840f7e5173d0b659c32..e6d09f819e9b506209b525d402b409bae7ab0f62 100644
--- a/mojom/BUILD.gn
+++ b/mojom/BUILD.gn
@@ -6,9 +6,18 @@ import("//testing/test.gni")
group("mojom") {
testonly = true
+ deps = [
+ ":tests",
+ ]
if (is_linux && defined(go_build_tool) && go_build_tool != "") {
- deps = [
- "//mojom/mojom_parser",
- ]
+ deps += [ "//mojom/mojom_parser" ]
+ }
+}
+
+group("tests") {
+ testonly = true
+ deps = []
+ if (is_linux && defined(go_build_tool) && go_build_tool != "") {
+ deps += [ "//mojom/mojom_parser:serialization_test" ]
}
}
« no previous file with comments | « mojo/tools/get_test_list.py ('k') | mojom/mojom_parser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698