| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 ] | 44 ] |
| 45 | 45 |
| 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", | |
| 55 ] | 54 ] |
| 56 } | 55 } |
| 57 | 56 |
| 58 service_manifest("manifest") { | 57 service_manifest("manifest") { |
| 59 name = "filesystem" | 58 name = "filesystem" |
| 60 source = "manifest.json" | 59 source = "manifest.json" |
| 61 } | 60 } |
| 62 | 61 |
| 63 service_test("filesystem_service_unittests") { | 62 service_test("filesystem_service_unittests") { |
| 64 sources = [ | 63 sources = [ |
| (...skipping 22 matching lines...) Expand all Loading... |
| 87 | 86 |
| 88 service_manifest("test_manifest") { | 87 service_manifest("test_manifest") { |
| 89 name = "filesystem_service_unittests" | 88 name = "filesystem_service_unittests" |
| 90 source = "test_manifest.json" | 89 source = "test_manifest.json" |
| 91 } | 90 } |
| 92 | 91 |
| 93 catalog("filesystem_service_unittests_catalog") { | 92 catalog("filesystem_service_unittests_catalog") { |
| 94 embedded_services = [ ":test_manifest" ] | 93 embedded_services = [ ":test_manifest" ] |
| 95 standalone_services = [ ":manifest" ] | 94 standalone_services = [ ":manifest" ] |
| 96 } | 95 } |
| OLD | NEW |