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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import("//mojo/public/mojo_application.gni")
6
7 mojo_native_application("flog") {
8 sources = [
9 "flog_directory.cc",
10 "flog_directory.h",
11 "flog_logger_impl.cc",
12 "flog_logger_impl.h",
13 "flog_reader_impl.cc",
14 "flog_reader_impl.h",
15 "flog_service_impl.cc",
16 "flog_service_impl.h",
17 "main.cc",
18 ]
19
20 deps = [
21 "//base",
22 "//mojo/application",
23 "//mojo/common",
24 "//mojo/public/cpp/application",
25 "//mojo/services/files/interfaces",
26 "//mojo/services/flog/interfaces",
27 "//services/util/cpp",
28 ]
29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698