OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 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 26 matching lines...) Expand all Loading... |
37 "main.cc", | 37 "main.cc", |
38 ] | 38 ] |
39 | 39 |
40 deps = [ | 40 deps = [ |
41 ":lib", | 41 ":lib", |
42 "//components/leveldb/public/interfaces", | 42 "//components/leveldb/public/interfaces", |
43 "//mojo/common", | 43 "//mojo/common", |
44 "//mojo/platform_handle:for_shared_library", | 44 "//mojo/platform_handle:for_shared_library", |
45 "//mojo/public/cpp/bindings", | 45 "//mojo/public/cpp/bindings", |
46 "//mojo/public/cpp/system", | 46 "//mojo/public/cpp/system", |
47 "//mojo/services/tracing/public/cpp", | |
48 "//services/shell/public/cpp", | 47 "//services/shell/public/cpp", |
| 48 "//services/tracing/public/cpp", |
49 ] | 49 ] |
50 | 50 |
51 data_deps = [ | 51 data_deps = [ |
52 ":manifest", | 52 ":manifest", |
53 ] | 53 ] |
54 } | 54 } |
55 | 55 |
56 mojo_application_manifest("manifest") { | 56 mojo_application_manifest("manifest") { |
57 application_name = "leveldb" | 57 application_name = "leveldb" |
58 source = "manifest.json" | 58 source = "manifest.json" |
(...skipping 24 matching lines...) Expand all Loading... |
83 ":leveldb", | 83 ":leveldb", |
84 "//components/filesystem:filesystem", | 84 "//components/filesystem:filesystem", |
85 ] | 85 ] |
86 } | 86 } |
87 | 87 |
88 mojo_application_manifest("test_manifest") { | 88 mojo_application_manifest("test_manifest") { |
89 type = "exe" | 89 type = "exe" |
90 application_name = "leveldb_service_unittests" | 90 application_name = "leveldb_service_unittests" |
91 source = "test_manifest.json" | 91 source = "test_manifest.json" |
92 } | 92 } |
OLD | NEW |