| 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") { |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 ":shutdown_client", | 28 ":shutdown_client", |
| 29 ":shutdown_service", | 29 ":shutdown_service", |
| 30 ":shutdown_unittest_manifest", | 30 ":shutdown_unittest_manifest", |
| 31 ] | 31 ] |
| 32 } | 32 } |
| 33 | 33 |
| 34 mojom("interfaces") { | 34 mojom("interfaces") { |
| 35 sources = [ | 35 sources = [ |
| 36 "shutdown_unittest.mojom", | 36 "shutdown_unittest.mojom", |
| 37 ] | 37 ] |
| 38 |
| 39 use_new_wrapper_types = false |
| 38 } | 40 } |
| 39 | 41 |
| 40 mojo_application_manifest("shutdown_unittest_manifest") { | 42 mojo_application_manifest("shutdown_unittest_manifest") { |
| 41 application_name = "shutdown_unittest" | 43 application_name = "shutdown_unittest" |
| 42 source = "shutdown_unittest_manifest.json" | 44 source = "shutdown_unittest_manifest.json" |
| 43 } | 45 } |
| 44 | 46 |
| 45 mojo_application_manifest("shutdown_service_manifest") { | 47 mojo_application_manifest("shutdown_service_manifest") { |
| 46 application_name = "shutdown_service" | 48 application_name = "shutdown_service" |
| 47 source = "shutdown_service_manifest.json" | 49 source = "shutdown_service_manifest.json" |
| (...skipping 28 matching lines...) Expand all Loading... |
| 76 deps = [ | 78 deps = [ |
| 77 ":interfaces", | 79 ":interfaces", |
| 78 "//base", | 80 "//base", |
| 79 "//services/shell/public/cpp:sources", | 81 "//services/shell/public/cpp:sources", |
| 80 "//services/shell/public/interfaces", | 82 "//services/shell/public/interfaces", |
| 81 ] | 83 ] |
| 82 data_deps = [ | 84 data_deps = [ |
| 83 ":shutdown_client_manifest", | 85 ":shutdown_client_manifest", |
| 84 ] | 86 ] |
| 85 } | 87 } |
| OLD | NEW |