| 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("//services/catalog/public/tools/catalog.gni") | 5 import("//services/catalog/public/tools/catalog.gni") |
| 6 import("//services/service_manager/public/cpp/service.gni") | 6 import("//services/service_manager/public/cpp/service.gni") |
| 7 import("//services/service_manager/public/service_manifest.gni") | 7 import("//services/service_manager/public/service_manifest.gni") |
| 8 import("//services/service_manager/public/tools/test/service_test.gni") | 8 import("//services/service_manager/public/tools/test/service_test.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 | 10 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 deps = [ | 46 deps = [ |
| 47 ":lib", | 47 ":lib", |
| 48 "//base", | 48 "//base", |
| 49 "//components/filesystem/public/interfaces", | 49 "//components/filesystem/public/interfaces", |
| 50 "//mojo/common", | 50 "//mojo/common", |
| 51 "//mojo/public/cpp/bindings", | 51 "//mojo/public/cpp/bindings", |
| 52 "//mojo/public/cpp/system", | 52 "//mojo/public/cpp/system", |
| 53 "//services/service_manager/public/cpp", | 53 "//services/service_manager/public/cpp", |
| 54 "//services/tracing/public/cpp", | 54 "//services/tracing/public/cpp", |
| 55 ] | 55 ] |
| 56 | |
| 57 data_deps = [ | |
| 58 ":manifest", | |
| 59 ] | |
| 60 } | 56 } |
| 61 | 57 |
| 62 service_manifest("manifest") { | 58 service_manifest("manifest") { |
| 63 name = "filesystem" | 59 name = "filesystem" |
| 64 source = "manifest.json" | 60 source = "manifest.json" |
| 65 } | 61 } |
| 66 | 62 |
| 67 service_test("filesystem_service_unittests") { | 63 service_test("filesystem_service_unittests") { |
| 68 sources = [ | 64 sources = [ |
| 69 "directory_impl_unittest.cc", | 65 "directory_impl_unittest.cc", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 91 | 87 |
| 92 service_manifest("test_manifest") { | 88 service_manifest("test_manifest") { |
| 93 name = "filesystem_service_unittests" | 89 name = "filesystem_service_unittests" |
| 94 source = "test_manifest.json" | 90 source = "test_manifest.json" |
| 95 } | 91 } |
| 96 | 92 |
| 97 catalog("filesystem_service_unittests_catalog") { | 93 catalog("filesystem_service_unittests_catalog") { |
| 98 embedded_services = [ ":test_manifest" ] | 94 embedded_services = [ ":test_manifest" ] |
| 99 standalone_services = [ ":manifest" ] | 95 standalone_services = [ ":manifest" ] |
| 100 } | 96 } |
| OLD | NEW |