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 | 7 |
8 source_set("lib") { | 8 source_set("lib") { |
9 sources = [ | 9 sources = [ |
10 "env_mojo.cc", | 10 "env_mojo.cc", |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 mojo_native_application("apptests") { | 59 mojo_native_application("apptests") { |
60 output_name = "leveldb_apptests" | 60 output_name = "leveldb_apptests" |
61 | 61 |
62 testonly = true | 62 testonly = true |
63 | 63 |
64 sources = [ | 64 sources = [ |
65 "leveldb_apptest.cc", | 65 "leveldb_apptest.cc", |
66 ] | 66 ] |
67 | 67 |
68 deps = [ | 68 deps = [ |
| 69 ":apptest_manifest", |
69 "//base", | 70 "//base", |
70 "//components/filesystem/public/interfaces", | 71 "//components/filesystem/public/interfaces", |
71 "//components/leveldb/public/interfaces", | 72 "//components/leveldb/public/interfaces", |
72 "//mojo/common", | 73 "//mojo/common", |
73 "//mojo/platform_handle:for_shared_library", | 74 "//mojo/platform_handle:for_shared_library", |
74 "//mojo/public/cpp/bindings", | 75 "//mojo/public/cpp/bindings", |
75 "//mojo/shell/public/cpp:test_support", | 76 "//mojo/shell/public/cpp:test_support", |
76 ] | 77 ] |
77 | 78 |
78 data_deps = [ | 79 data_deps = [ |
79 ":leveldb", | 80 ":leveldb", |
80 "//components/filesystem:filesystem", | 81 "//components/filesystem:filesystem", |
81 ] | 82 ] |
82 } | 83 } |
| 84 |
| 85 mojo_application_manifest("apptest_manifest") { |
| 86 application_name = "leveldb_apptests" |
| 87 source = "apptest_manifest.json" |
| 88 } |
OLD | NEW |