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

Unified Diff: services/flog/BUILD.gn

Issue 2046703002: Add 'flog' service implementation. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 6 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
Index: services/flog/BUILD.gn
diff --git a/services/flog/BUILD.gn b/services/flog/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..ded940b57a5424f26833eb6f32213734e01acd35
--- /dev/null
+++ b/services/flog/BUILD.gn
@@ -0,0 +1,29 @@
+# Copyright 2016 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")
+
+mojo_native_application("flog") {
+ sources = [
+ "flog_directory.cc",
+ "flog_directory.h",
+ "flog_logger_impl.cc",
+ "flog_logger_impl.h",
+ "flog_reader_impl.cc",
+ "flog_reader_impl.h",
+ "flog_service_impl.cc",
+ "flog_service_impl.h",
+ "main.cc",
+ ]
+
+ deps = [
+ "//base",
+ "//mojo/application",
+ "//mojo/common",
+ "//mojo/public/cpp/application",
+ "//mojo/services/files/interfaces",
+ "//mojo/services/flog/interfaces",
+ "//services/util/cpp",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698