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 10 matching lines...) Expand all Loading... |
21 "catalog.h", | 21 "catalog.h", |
22 "entry.cc", | 22 "entry.cc", |
23 "entry.h", | 23 "entry.h", |
24 "loader.cc", | 24 "loader.cc", |
25 "loader.h", | 25 "loader.h", |
26 "store.cc", | 26 "store.cc", |
27 "store.h", | 27 "store.h", |
28 ] | 28 ] |
29 | 29 |
30 deps = [ | 30 deps = [ |
31 ":manifest", | |
32 "//base", | 31 "//base", |
33 "//mojo/common:url_type_converters", | 32 "//mojo/common:url_type_converters", |
34 "//mojo/services/catalog/public/interfaces", | 33 "//mojo/services/catalog/public/interfaces", |
35 "//mojo/shell/public/cpp", | 34 "//mojo/shell/public/cpp", |
36 "//mojo/util:filename_util", | 35 "//mojo/util:filename_util", |
37 "//net", | 36 "//net", |
38 ] | 37 ] |
| 38 |
| 39 data_deps = [ |
| 40 ":manifest", |
| 41 ] |
39 } | 42 } |
40 | 43 |
41 mojo_application_manifest("manifest") { | 44 mojo_application_manifest("manifest") { |
42 application_name = "catalog" | 45 application_name = "catalog" |
43 source = "manifest.json" | 46 source = "manifest.json" |
44 } | 47 } |
45 | 48 |
46 source_set("unittests") { | 49 source_set("unittests") { |
47 testonly = true | 50 testonly = true |
48 sources = [ | 51 sources = [ |
49 "builder_unittest.cc", | 52 "builder_unittest.cc", |
50 ] | 53 ] |
51 deps = [ | 54 deps = [ |
52 ":lib", | 55 ":lib", |
53 "//base", | 56 "//base", |
54 "//mojo/shell/public/cpp", | 57 "//mojo/shell/public/cpp", |
55 "//testing/gtest", | 58 "//testing/gtest", |
56 ] | 59 ] |
57 } | 60 } |
OLD | NEW |