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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
45 mojo_application_manifest("manifest") { | 45 mojo_application_manifest("manifest") { |
46 application_name = "catalog" | 46 application_name = "catalog" |
47 source = "manifest.json" | 47 source = "manifest.json" |
48 } | 48 } |
49 | 49 |
50 source_set("unittests") { | 50 source_set("unittests") { |
51 testonly = true | 51 testonly = true |
52 sources = [ | 52 sources = [ |
53 "entry_unittest.cc", | 53 "entry_unittest.cc", |
54 ] | 54 ] |
55 data = [ | |
56 "//services/catalog/data/capabilities", | |
jam
2016/04/28 15:59:29
just //services/catalog/data/
Sam McNally
2016/04/29 00:21:24
Done.
| |
57 "//services/catalog/data/instance", | |
58 "//services/catalog/data/malformed", | |
59 "//services/catalog/data/serialization", | |
60 "//services/catalog/data/simple", | |
61 ] | |
55 deps = [ | 62 deps = [ |
56 ":lib", | 63 ":lib", |
57 "//base", | 64 "//base", |
58 "//services/shell/public/cpp", | 65 "//services/shell/public/cpp", |
59 "//testing/gtest", | 66 "//testing/gtest", |
60 ] | 67 ] |
61 } | 68 } |
OLD | NEW |