| 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 group("catalog") { | 9 group("catalog") { |
| 10 testonly = true | 10 testonly = true |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 "manifest_provider.h", | 26 "manifest_provider.h", |
| 27 "reader.cc", | 27 "reader.cc", |
| 28 "reader.h", | 28 "reader.h", |
| 29 "store.cc", | 29 "store.cc", |
| 30 "store.h", | 30 "store.h", |
| 31 "types.h", | 31 "types.h", |
| 32 ] | 32 ] |
| 33 | 33 |
| 34 deps = [ | 34 deps = [ |
| 35 "//base", | 35 "//base", |
| 36 "//components/filesystem:lib", |
| 37 "//components/filesystem/public/interfaces", |
| 36 "//services/catalog/public/interfaces", | 38 "//services/catalog/public/interfaces", |
| 37 "//services/shell/public/cpp", | 39 "//services/shell/public/cpp", |
| 38 ] | 40 ] |
| 39 | 41 |
| 40 data_deps = [ | 42 data_deps = [ |
| 41 ":manifest", | 43 ":manifest", |
| 42 ] | 44 ] |
| 43 } | 45 } |
| 44 | 46 |
| 45 mojo_application_manifest("manifest") { | 47 mojo_application_manifest("manifest") { |
| 46 application_name = "catalog" | 48 application_name = "catalog" |
| 47 source = "manifest.json" | 49 source = "manifest.json" |
| 48 } | 50 } |
| 49 | 51 |
| 50 source_set("unittests") { | 52 source_set("unittests") { |
| 51 testonly = true | 53 testonly = true |
| 52 sources = [ | 54 sources = [ |
| 53 "entry_unittest.cc", | 55 "entry_unittest.cc", |
| 54 ] | 56 ] |
| 55 data = [ | 57 data = [ |
| 56 "//services/catalog/data/", | 58 "//services/catalog/data/", |
| 57 ] | 59 ] |
| 58 deps = [ | 60 deps = [ |
| 59 ":lib", | 61 ":lib", |
| 60 "//base", | 62 "//base", |
| 61 "//services/shell/public/cpp", | 63 "//services/shell/public/cpp", |
| 62 "//testing/gtest", | 64 "//testing/gtest", |
| 63 ] | 65 ] |
| 64 } | 66 } |
| OLD | NEW |