| 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("shutdown") { | 10 source_set("shutdown") { |
| 11 testonly = true | 11 testonly = true |
| 12 sources = [ | 12 sources = [ |
| 13 "shutdown_unittest.cc", | 13 "shutdown_unittest.cc", |
| 14 ] | 14 ] |
| 15 | 15 |
| 16 deps = [ | 16 deps = [ |
| 17 ":interfaces", | 17 ":interfaces", |
| 18 ":shutdown_client", | 18 ":shutdown_client", |
| 19 ":shutdown_service", | 19 ":shutdown_service", |
| 20 "//base", | 20 "//base", |
| 21 "//base/test:test_config", | 21 "//base/test:test_config", |
| 22 "//services/shell/public/cpp:shell_test_support", | 22 "//services/shell/public/cpp:service_test_support", |
| 23 "//services/shell/public/cpp:sources", | 23 "//services/shell/public/cpp:sources", |
| 24 "//services/shell/public/interfaces", | 24 "//services/shell/public/interfaces", |
| 25 ] | 25 ] |
| 26 | 26 |
| 27 data_deps = [ | 27 data_deps = [ |
| 28 ":shutdown_client", | 28 ":shutdown_client", |
| 29 ":shutdown_service", | 29 ":shutdown_service", |
| 30 ":shutdown_unittest_manifest", | 30 ":shutdown_unittest_manifest", |
| 31 ] | 31 ] |
| 32 } | 32 } |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 deps = [ | 76 deps = [ |
| 77 ":interfaces", | 77 ":interfaces", |
| 78 "//base", | 78 "//base", |
| 79 "//services/shell/public/cpp:sources", | 79 "//services/shell/public/cpp:sources", |
| 80 "//services/shell/public/interfaces", | 80 "//services/shell/public/interfaces", |
| 81 ] | 81 ] |
| 82 data_deps = [ | 82 data_deps = [ |
| 83 ":shutdown_client_manifest", | 83 ":shutdown_client_manifest", |
| 84 ] | 84 ] |
| 85 } | 85 } |
| OLD | NEW |