| OLD | NEW |
| (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 } |
| OLD | NEW |