| 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("//services/catalog/public/tools/catalog.gni") | 5 import("//services/catalog/public/tools/catalog.gni") | 
| 6 import("//services/service_manager/public/service_manifest.gni") | 6 import("//services/service_manager/public/service_manifest.gni") | 
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") | 
| 8 | 8 | 
| 9 service_manifest("manifest") { | 9 service_manifest("manifest") { | 
| 10   name = "preferences2" | 10   name = "preferences" | 
| 11   source = "manifest.json" | 11   source = "manifest.json" | 
| 12 } | 12 } | 
| 13 | 13 | 
| 14 source_set("preferences") { | 14 source_set("preferences") { | 
| 15   visibility = [ | 15   visibility = [ | 
| 16     ":*", | 16     ":*", | 
| 17     "//services/preferences/public/cpp:service_main", | 17     "//services/preferences/public/cpp:service_main", | 
| 18   ] | 18   ] | 
| 19   deps = [ | 19   deps = [ | 
| 20     "//components/prefs", | 20     "//components/prefs", | 
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 60 service_manifest("unittest_manifest") { | 60 service_manifest("unittest_manifest") { | 
| 61   name = "prefs_unittests" | 61   name = "prefs_unittests" | 
| 62   source = "unittest_manifest.json" | 62   source = "unittest_manifest.json" | 
| 63   packaged_services = [ ":manifest" ] | 63   packaged_services = [ ":manifest" ] | 
| 64 } | 64 } | 
| 65 | 65 | 
| 66 catalog("tests_catalog") { | 66 catalog("tests_catalog") { | 
| 67   testonly = true | 67   testonly = true | 
| 68   embedded_services = [ ":unittest_manifest" ] | 68   embedded_services = [ ":unittest_manifest" ] | 
| 69 } | 69 } | 
| OLD | NEW | 
|---|