| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 ] | 63 ] |
| 64 | 64 |
| 65 deps = [ | 65 deps = [ |
| 66 "//base", | 66 "//base", |
| 67 "//components/filesystem/public/interfaces", | 67 "//components/filesystem/public/interfaces", |
| 68 "//components/leveldb/public/cpp", | 68 "//components/leveldb/public/cpp", |
| 69 "//components/leveldb/public/interfaces", | 69 "//components/leveldb/public/interfaces", |
| 70 "//mojo/common", | 70 "//mojo/common", |
| 71 "//mojo/public/cpp/bindings", | 71 "//mojo/public/cpp/bindings", |
| 72 "//mojo/public/cpp/system", | 72 "//mojo/public/cpp/system", |
| 73 "//services/shell/public/cpp:shell_test_support", | 73 "//services/shell/public/cpp:service_test_support", |
| 74 "//services/shell/public/cpp:sources", | 74 "//services/shell/public/cpp:sources", |
| 75 "//services/shell/public/cpp/test:run_all_shelltests", | 75 "//services/shell/public/cpp/test:run_all_shelltests", |
| 76 "//third_party/leveldatabase", | 76 "//third_party/leveldatabase", |
| 77 ] | 77 ] |
| 78 | 78 |
| 79 data_deps = [ | 79 data_deps = [ |
| 80 ":test_manifest", | 80 ":test_manifest", |
| 81 ":leveldb", | 81 ":leveldb", |
| 82 "//components/filesystem:filesystem", | 82 "//components/filesystem:filesystem", |
| 83 ] | 83 ] |
| 84 } | 84 } |
| 85 | 85 |
| 86 mojo_application_manifest("test_manifest") { | 86 mojo_application_manifest("test_manifest") { |
| 87 type = "exe" | 87 type = "exe" |
| 88 application_name = "leveldb_service_unittests" | 88 application_name = "leveldb_service_unittests" |
| 89 source = "test_manifest.json" | 89 source = "test_manifest.json" |
| 90 } | 90 } |
| OLD | NEW |