OLD | NEW |
---|---|
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
6 | 6 |
7 mojo_native_application("files") { | 7 mojo_native_application("files") { |
8 sources = [ | 8 sources = [ |
9 "main.cc", | 9 "main.cc", |
10 ] | 10 ] |
11 | 11 |
12 deps = [ | 12 deps = [ |
13 ":lib", | 13 ":lib", |
14 "//mojo/application", | 14 "//mojo/application", |
15 ] | 15 ] |
16 } | 16 } |
17 | 17 |
18 # Library that allows to include the service code directly into the embedding | |
viettrungluu
2016/05/19 20:30:38
...
nelly
2016/05/20 08:59:22
Done here and in the other files.
| |
19 # shell. Used by https://manganese.googlesource.com/. | |
18 source_set("lib") { | 20 source_set("lib") { |
19 sources = [ | 21 sources = [ |
20 "directory_impl.cc", | 22 "directory_impl.cc", |
21 "directory_impl.h", | 23 "directory_impl.h", |
22 "file_impl.cc", | 24 "file_impl.cc", |
23 "file_impl.h", | 25 "file_impl.h", |
24 "files_app.cc", | 26 "files_app.cc", |
25 "files_app.h", | 27 "files_app.h", |
26 "files_impl.cc", | 28 "files_impl.cc", |
27 "files_impl.h", | 29 "files_impl.h", |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
62 "//mojo/application:test_support", | 64 "//mojo/application:test_support", |
63 "//mojo/public/cpp/bindings", | 65 "//mojo/public/cpp/bindings", |
64 "//mojo/services/files/interfaces", | 66 "//mojo/services/files/interfaces", |
65 "//mojo/services/files/interfaces:interfaces_sync", | 67 "//mojo/services/files/interfaces:interfaces_sync", |
66 ] | 68 ] |
67 | 69 |
68 data_deps = [ | 70 data_deps = [ |
69 ":files($default_toolchain)", | 71 ":files($default_toolchain)", |
70 ] | 72 ] |
71 } | 73 } |
OLD | NEW |