| 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("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.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 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 "child_process_base.cc", | 41 "child_process_base.cc", |
| 42 "child_process_base.h", | 42 "child_process_base.h", |
| 43 ] | 43 ] |
| 44 | 44 |
| 45 deps = [ | 45 deps = [ |
| 46 "//base", | 46 "//base", |
| 47 "//mojo/edk/system", | 47 "//mojo/edk/system", |
| 48 "//mojo/message_pump", | 48 "//mojo/message_pump", |
| 49 "//mojo/platform_handle:platform_handle_impl", | 49 "//mojo/platform_handle:platform_handle_impl", |
| 50 "//mojo/shell", | 50 "//mojo/shell", |
| 51 "//mojo/shell/public/interfaces", |
| 51 "//mojo/shell/runner:init", | 52 "//mojo/shell/runner:init", |
| 52 "//mojo/shell/runner/child:interfaces", | |
| 53 "//mojo/shell/runner/common", | 53 "//mojo/shell/runner/common", |
| 54 ] | 54 ] |
| 55 } | 55 } |
| 56 | 56 |
| 57 source_set("lib") { | 57 source_set("lib") { |
| 58 sources = [ | 58 sources = [ |
| 59 "child_process.cc", | 59 "child_process.cc", |
| 60 "child_process.h", | 60 "child_process.h", |
| 61 "child_process_host.cc", | 61 "child_process_host.cc", |
| 62 "child_process_host.h", | 62 "child_process_host.h", |
| 63 "in_process_native_runner.cc", | 63 "in_process_native_runner.cc", |
| 64 "in_process_native_runner.h", | 64 "in_process_native_runner.h", |
| 65 "out_of_process_native_runner.cc", | 65 "out_of_process_native_runner.cc", |
| 66 "out_of_process_native_runner.h", | 66 "out_of_process_native_runner.h", |
| 67 ] | 67 ] |
| 68 | 68 |
| 69 deps = [ | 69 deps = [ |
| 70 ":child_process_base", | 70 ":child_process_base", |
| 71 ":native_application_support", | 71 ":native_application_support", |
| 72 "//base", | 72 "//base", |
| 73 "//base:base_static", | 73 "//base:base_static", |
| 74 "//base:i18n", | 74 "//base:i18n", |
| 75 "//mojo/edk/system", | 75 "//mojo/edk/system", |
| 76 "//mojo/message_pump", | 76 "//mojo/message_pump", |
| 77 "//mojo/platform_handle:platform_handle_impl", | 77 "//mojo/platform_handle:platform_handle_impl", |
| 78 "//mojo/shell", | 78 "//mojo/shell", |
| 79 "//mojo/shell/public/interfaces", |
| 79 "//mojo/shell/runner:init", | 80 "//mojo/shell/runner:init", |
| 80 "//mojo/shell/runner/child:interfaces", | |
| 81 "//mojo/shell/runner/common", | 81 "//mojo/shell/runner/common", |
| 82 ] | 82 ] |
| 83 | 83 |
| 84 if (is_linux && !is_android) { | 84 if (is_linux && !is_android) { |
| 85 sources += [ | 85 sources += [ |
| 86 "linux_sandbox.cc", | 86 "linux_sandbox.cc", |
| 87 "linux_sandbox.h", | 87 "linux_sandbox.h", |
| 88 ] | 88 ] |
| 89 | 89 |
| 90 deps += [ | 90 deps += [ |
| (...skipping 17 matching lines...) Expand all Loading... |
| 108 "//base", | 108 "//base", |
| 109 "//base/test:test_support", | 109 "//base/test:test_support", |
| 110 "//mojo/edk/system", | 110 "//mojo/edk/system", |
| 111 "//mojo/message_pump", | 111 "//mojo/message_pump", |
| 112 "//mojo/shell", | 112 "//mojo/shell", |
| 113 "//mojo/shell/runner:init", | 113 "//mojo/shell/runner:init", |
| 114 "//mojo/shell/runner/common", | 114 "//mojo/shell/runner/common", |
| 115 "//testing/gtest", | 115 "//testing/gtest", |
| 116 ] | 116 ] |
| 117 } | 117 } |
| OLD | NEW |