| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//services/shell/public/cpp/service.gni") | 5 import("//services/shell/public/cpp/service.gni") |
| 6 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 group("host") { | 9 group("host") { |
| 10 testonly = true | 10 testonly = true |
| 11 | 11 |
| 12 deps = [ | 12 deps = [ |
| 13 ":lib", | 13 ":lib", |
| 14 ":mojo_runner_host_unittests", | 14 ":mojo_runner_host_unittests", |
| 15 ] | 15 ] |
| 16 } | 16 } |
| 17 | 17 |
| 18 source_set("native_application_support") { | 18 source_set("native_library_runner") { |
| 19 sources = [ | 19 sources = [ |
| 20 "native_application_support.cc", | 20 "native_library_runner.cc", |
| 21 "native_application_support.h", | 21 "native_library_runner.h", |
| 22 ] | 22 ] |
| 23 | 23 |
| 24 deps = [ | 24 deps = [ |
| 25 "//base", | 25 "//base", |
| 26 "//mojo/edk/system", | 26 "//mojo/edk/system", |
| 27 "//services/shell", | 27 "//services/shell", |
| 28 ] | 28 ] |
| 29 | 29 |
| 30 # This target has to include the public thunk headers, which generally | 30 # This target has to include the public thunk headers, which generally |
| 31 # shouldn't be included without picking an implementation. We are providing | 31 # shouldn't be included without picking an implementation. We are providing |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 "child_process_host.cc", | 79 "child_process_host.cc", |
| 80 "child_process_host.h", | 80 "child_process_host.h", |
| 81 "in_process_native_runner.cc", | 81 "in_process_native_runner.cc", |
| 82 "in_process_native_runner.h", | 82 "in_process_native_runner.h", |
| 83 "out_of_process_native_runner.cc", | 83 "out_of_process_native_runner.cc", |
| 84 "out_of_process_native_runner.h", | 84 "out_of_process_native_runner.h", |
| 85 ] | 85 ] |
| 86 | 86 |
| 87 deps = [ | 87 deps = [ |
| 88 ":child_process_base", | 88 ":child_process_base", |
| 89 ":native_application_support", | 89 ":native_library_runner", |
| 90 "//base:base_static", | 90 "//base:base_static", |
| 91 "//base:i18n", | 91 "//base:i18n", |
| 92 "//services/shell/public/cpp:sources", | 92 "//services/shell/public/cpp:sources", |
| 93 "//services/shell/runner:init", | 93 "//services/shell/runner:init", |
| 94 "//services/shell/runner/common", | 94 "//services/shell/runner/common", |
| 95 ] | 95 ] |
| 96 | 96 |
| 97 public_deps = [ | 97 public_deps = [ |
| 98 "//base", | 98 "//base", |
| 99 "//mojo/edk/system", | 99 "//mojo/edk/system", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 118 ":lib", | 118 ":lib", |
| 119 "//base", | 119 "//base", |
| 120 "//base/test:test_support", | 120 "//base/test:test_support", |
| 121 "//mojo/edk/system", | 121 "//mojo/edk/system", |
| 122 "//services/shell", | 122 "//services/shell", |
| 123 "//services/shell/runner:init", | 123 "//services/shell/runner:init", |
| 124 "//services/shell/runner/common", | 124 "//services/shell/runner/common", |
| 125 "//testing/gtest", | 125 "//testing/gtest", |
| 126 ] | 126 ] |
| 127 } | 127 } |
| OLD | NEW |