Index: apps/moterm/BUILD.gn |
diff --git a/apps/moterm/BUILD.gn b/apps/moterm/BUILD.gn |
new file mode 100644 |
index 0000000000000000000000000000000000000000..2d20419eae4417d431d23305d9bda54bba8c2167 |
--- /dev/null |
+++ b/apps/moterm/BUILD.gn |
@@ -0,0 +1,39 @@ |
+# 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("//mojo/public/mojo_application.gni") |
+ |
+source_set("model") { |
+ sources = [ |
+ "moterm_model.cc", |
+ "moterm_model.h", |
+ ] |
+ |
+ deps = [ |
+ "//third_party/libteken", |
+ ] |
+ |
+ forward_dependent_configs_from = [ "//third_party/libteken" ] |
+ |
+ public_deps = [ |
+ "//base", |
+ ] |
+} |
+ |
+mojo_native_application("apptests") { |
+ output_name = "moterm_apptests" |
+ |
+ testonly = true |
+ |
+ sources = [ |
+ "moterm_model_unittest.cc", |
+ ] |
+ |
+ deps = [ |
+ ":model", |
+ "//mojo/application", |
+ "//mojo/application:test_support", |
+ "//testing/gtest", |
+ ] |
+} |