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

Unified Diff: mojom/BUILD.gn

Issue 1034083003: Mojom lexer. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 9 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 | « BUILD.gn ('k') | mojom/lexer.h » ('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
new file mode 100644
index 0000000000000000000000000000000000000000..d26d44ccb87fa5ff9ba100f839cc3a58fb09c8a2
--- /dev/null
+++ b/mojom/BUILD.gn
@@ -0,0 +1,43 @@
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//testing/test.gni")
+
+group("mojom") {
+ testonly = true
+ deps = [
+ ":tests",
+ ]
+}
+
+group("tests") {
+ testonly = true
+ deps = [
+ ":lexer_unittest",
+ ]
+}
+
+test("lexer_unittest") {
+ sources = [
+ "lexer_unittest.cc",
+ ]
+
+ deps = [
+ "//base",
+ "//base/test:run_all_unittests",
+ "//testing/gtest",
+ ":lexer",
+ ]
+}
+
+source_set("lexer") {
+ sources = [
+ "lexer.cc",
+ "lexer.h",
+ ]
+
+ deps = [
+ "//base",
+ ]
+}
« no previous file with comments | « BUILD.gn ('k') | mojom/lexer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698