| 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("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 source_set("test_support") { | 10 source_set("test_support") { |
| 11 sources = [ | 11 sources = [ |
| 12 "test_application_catalog_store.cc", | 12 "test_catalog_store.cc", |
| 13 "test_application_catalog_store.h", | 13 "test_catalog_store.h", |
| 14 ] | 14 ] |
| 15 | 15 |
| 16 deps = [ | 16 deps = [ |
| 17 "//base", | 17 "//base", |
| 18 "//mojo/services/package_manager:lib", | 18 "//mojo/services/catalog:lib", |
| 19 "//url", | 19 "//url", |
| 20 ] | 20 ] |
| 21 } | 21 } |
| 22 | 22 |
| 23 source_set("unittests") { | 23 source_set("unittests") { |
| 24 testonly = true | 24 testonly = true |
| 25 sources = [ | 25 sources = [ |
| 26 "background_shell_unittest.cc", | 26 "background_shell_unittest.cc", |
| 27 ] | 27 ] |
| 28 | 28 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 55 "test_service.cc", | 55 "test_service.cc", |
| 56 ] | 56 ] |
| 57 | 57 |
| 58 deps = [ | 58 deps = [ |
| 59 ":test_app_bindings", | 59 ":test_app_bindings", |
| 60 "//base", | 60 "//base", |
| 61 "//mojo/shell/public/cpp:sources", | 61 "//mojo/shell/public/cpp:sources", |
| 62 "//mojo/shell/public/interfaces", | 62 "//mojo/shell/public/interfaces", |
| 63 ] | 63 ] |
| 64 } | 64 } |
| OLD | NEW |