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 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 | 8 |
9 source_set("lib") { | 9 source_set("lib") { |
10 sources = [ | 10 sources = [ |
(...skipping 29 matching lines...) Expand all Loading... |
40 ] | 40 ] |
41 | 41 |
42 deps = [ | 42 deps = [ |
43 ":lib", | 43 ":lib", |
44 "//base", | 44 "//base", |
45 "//components/filesystem/public/interfaces", | 45 "//components/filesystem/public/interfaces", |
46 "//mojo/common", | 46 "//mojo/common", |
47 "//mojo/platform_handle:for_shared_library", | 47 "//mojo/platform_handle:for_shared_library", |
48 "//mojo/public/cpp/bindings", | 48 "//mojo/public/cpp/bindings", |
49 "//mojo/public/cpp/system", | 49 "//mojo/public/cpp/system", |
50 "//mojo/services/tracing/public/cpp", | |
51 "//services/shell/public/cpp", | 50 "//services/shell/public/cpp", |
| 51 "//services/tracing/public/cpp", |
52 ] | 52 ] |
53 | 53 |
54 data_deps = [ | 54 data_deps = [ |
55 ":manifest", | 55 ":manifest", |
56 ] | 56 ] |
57 } | 57 } |
58 | 58 |
59 mojo_application_manifest("manifest") { | 59 mojo_application_manifest("manifest") { |
60 application_name = "filesystem" | 60 application_name = "filesystem" |
61 source = "manifest.json" | 61 source = "manifest.json" |
(...skipping 24 matching lines...) Expand all Loading... |
86 ":test_manifest", | 86 ":test_manifest", |
87 ":filesystem", | 87 ":filesystem", |
88 ] | 88 ] |
89 } | 89 } |
90 | 90 |
91 mojo_application_manifest("test_manifest") { | 91 mojo_application_manifest("test_manifest") { |
92 type = "exe" | 92 type = "exe" |
93 application_name = "filesystem_service_unittests" | 93 application_name = "filesystem_service_unittests" |
94 source = "test_manifest.json" | 94 source = "test_manifest.json" |
95 } | 95 } |
OLD | NEW |