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

Unified Diff: services/log/BUILD.gn

Issue 1447273002: Mojo Log service and a thread-safe client library. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: initialize global variables at start of the test Created 5 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 | « services/BUILD.gn ('k') | services/log/log_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/log/BUILD.gn
diff --git a/services/log/BUILD.gn b/services/log/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..6d9107090de69963a1dfb177d4585f9df8f8efd2
--- /dev/null
+++ b/services/log/BUILD.gn
@@ -0,0 +1,51 @@
+# 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("log_impl") {
+ sources = [
+ "log_impl.cc",
+ "log_impl.h",
+ ]
+
+ deps = [
+ "//base",
+ "//mojo/public/cpp/application",
+ "//mojo/services/log/interfaces",
+ ]
+}
+
+mojo_native_application("log") {
+ sources = [
+ "main.cc",
+ ]
+
+ deps = [
+ ":log_impl",
+ "//mojo/application",
+ "//mojo/services/log/interfaces",
+ ]
+}
+
+mojo_native_application("apptests") {
+ output_name = "log_impl_apptests"
+
+ testonly = true
+
+ sources = [
+ "log_impl_unittest.cc",
+ ]
+
+ deps = [
+ ":log_impl",
+ "//base",
+ "//mojo/application",
+ "//mojo/application:test_support",
+ "//mojo/public/cpp/bindings",
+ "//mojo/services/log/interfaces",
+ "//testing/gtest",
+ "//base/test:test_config",
+ ]
+}
« no previous file with comments | « services/BUILD.gn ('k') | services/log/log_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698