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 |
11 deps = [ | 11 deps = [ |
12 ":lib", | 12 ":lib", |
13 ] | 13 ] |
14 } | 14 } |
15 | 15 |
16 source_set("lib") { | 16 source_set("lib") { |
17 sources = [ | 17 sources = [ |
18 "catalog.cc", | 18 "catalog.cc", |
19 "catalog.h", | 19 "catalog.h", |
20 "entry.cc", | 20 "entry.cc", |
21 "entry.h", | 21 "entry.h", |
22 "factory.cc", | 22 "factory.cc", |
23 "factory.h", | 23 "factory.h", |
| 24 "manifest_provider.h", |
24 "store.cc", | 25 "store.cc", |
25 "store.h", | 26 "store.h", |
26 "types.h", | 27 "types.h", |
27 ] | 28 ] |
28 | 29 |
29 deps = [ | 30 deps = [ |
30 "//base", | 31 "//base", |
31 "//mojo/common:url_type_converters", | 32 "//mojo/common:url_type_converters", |
32 "//mojo/services/catalog/public/interfaces", | 33 "//mojo/services/catalog/public/interfaces", |
33 "//mojo/shell/public/cpp", | 34 "//mojo/shell/public/cpp", |
(...skipping 15 matching lines...) Expand all Loading... |
49 sources = [ | 50 sources = [ |
50 "entry_unittest.cc", | 51 "entry_unittest.cc", |
51 ] | 52 ] |
52 deps = [ | 53 deps = [ |
53 ":lib", | 54 ":lib", |
54 "//base", | 55 "//base", |
55 "//mojo/shell/public/cpp", | 56 "//mojo/shell/public/cpp", |
56 "//testing/gtest", | 57 "//testing/gtest", |
57 ] | 58 ] |
58 } | 59 } |
OLD | NEW |