| 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/", |
| 57 ] |
| 55 deps = [ | 58 deps = [ |
| 56 ":lib", | 59 ":lib", |
| 57 "//base", | 60 "//base", |
| 58 "//services/shell/public/cpp", | 61 "//services/shell/public/cpp", |
| 59 "//testing/gtest", | 62 "//testing/gtest", |
| 60 ] | 63 ] |
| 61 } | 64 } |
| OLD | NEW |