| 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("lifecycle") { | 10 source_set("lifecycle") { |
| 11 testonly = true | 11 testonly = true |
| 12 sources = [ | 12 sources = [ |
| 13 "lifecycle_unittest.cc", | 13 "lifecycle_unittest.cc", |
| 14 ] | 14 ] |
| 15 deps = [ | 15 deps = [ |
| 16 ":interfaces", | 16 ":interfaces", |
| 17 "//base", | 17 "//base", |
| 18 "//base/test:test_support", | 18 "//base/test:test_support", |
| 19 "//services/shell/public/cpp:shell_test_support", | 19 "//services/shell/public/cpp:service_test_support", |
| 20 "//services/shell/public/cpp:sources", | 20 "//services/shell/public/cpp:sources", |
| 21 "//services/shell/public/interfaces", | 21 "//services/shell/public/interfaces", |
| 22 "//services/shell/runner/common", | 22 "//services/shell/runner/common", |
| 23 "//services/shell/tests:util", | 23 "//services/shell/tests:util", |
| 24 ] | 24 ] |
| 25 | 25 |
| 26 data_deps = [ | 26 data_deps = [ |
| 27 ":lifecycle_unittest_app", | 27 ":lifecycle_unittest_app", |
| 28 ":lifecycle_unittest_parent", | 28 ":lifecycle_unittest_parent", |
| 29 ":lifecycle_unittest_exe", | 29 ":lifecycle_unittest_exe", |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 data_deps = [ | 155 data_deps = [ |
| 156 ":lifecycle_unittest_exe_manifest", | 156 ":lifecycle_unittest_exe_manifest", |
| 157 ] | 157 ] |
| 158 } | 158 } |
| 159 | 159 |
| 160 mojo_application_manifest("lifecycle_unittest_exe_manifest") { | 160 mojo_application_manifest("lifecycle_unittest_exe_manifest") { |
| 161 type = "exe" | 161 type = "exe" |
| 162 application_name = "lifecycle_unittest_exe" | 162 application_name = "lifecycle_unittest_exe" |
| 163 source = "exe_manifest.json" | 163 source = "exe_manifest.json" |
| 164 } | 164 } |
| OLD | NEW |