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 import("//mojo/public/mojo_application_manifest.gni") | 6 import("//mojo/public/mojo_application_manifest.gni") |
7 | 7 |
8 source_set("lib") { | 8 source_set("lib") { |
9 sources = [ | 9 sources = [ |
10 "directory_impl.cc", | 10 "directory_impl.cc", |
(...skipping 26 matching lines...) Expand all Loading... |
37 "file_system_app.h", | 37 "file_system_app.h", |
38 "main.cc", | 38 "main.cc", |
39 ] | 39 ] |
40 | 40 |
41 deps = [ | 41 deps = [ |
42 ":lib", | 42 ":lib", |
43 ":manifest", | 43 ":manifest", |
44 "//base", | 44 "//base", |
45 "//components/filesystem/public/interfaces", | 45 "//components/filesystem/public/interfaces", |
46 "//mojo/common", | 46 "//mojo/common", |
47 "//mojo/environment:chromium", | |
48 "//mojo/platform_handle:for_shared_library", | 47 "//mojo/platform_handle:for_shared_library", |
49 "//mojo/public/cpp/bindings", | 48 "//mojo/public/cpp/bindings", |
50 "//mojo/public/cpp/system", | 49 "//mojo/public/cpp/system", |
51 "//mojo/services/tracing/public/cpp", | 50 "//mojo/services/tracing/public/cpp", |
52 "//mojo/shell/public/cpp", | 51 "//mojo/shell/public/cpp", |
53 ] | 52 ] |
54 } | 53 } |
55 | 54 |
56 mojo_application_manifest("manifest") { | 55 mojo_application_manifest("manifest") { |
57 application_name = "filesystem" | 56 application_name = "filesystem" |
(...skipping 24 matching lines...) Expand all Loading... |
82 | 81 |
83 data_deps = [ | 82 data_deps = [ |
84 ":filesystem", | 83 ":filesystem", |
85 ] | 84 ] |
86 } | 85 } |
87 | 86 |
88 mojo_application_manifest("apptest_manifest") { | 87 mojo_application_manifest("apptest_manifest") { |
89 application_name = "filesystem_apptests" | 88 application_name = "filesystem_apptests" |
90 source = "apptest_manifest.json" | 89 source = "apptest_manifest.json" |
91 } | 90 } |
OLD | NEW |