| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/cpp:sources", |
| 79 "//mojo/shell/public/interfaces", | 80 "//mojo/shell/public/interfaces", |
| 80 "//mojo/shell/runner:init", | 81 "//mojo/shell/runner:init", |
| 81 "//mojo/shell/runner/common", | 82 "//mojo/shell/runner/common", |
| 82 ] | 83 ] |
| 83 | 84 |
| 84 if (is_linux && !is_android) { | 85 if (is_linux && !is_android) { |
| 85 sources += [ | 86 sources += [ |
| 86 "linux_sandbox.cc", | 87 "linux_sandbox.cc", |
| 87 "linux_sandbox.h", | 88 "linux_sandbox.h", |
| 88 ] | 89 ] |
| (...skipping 19 matching lines...) Expand all Loading... |
| 108 "//base", | 109 "//base", |
| 109 "//base/test:test_support", | 110 "//base/test:test_support", |
| 110 "//mojo/edk/system", | 111 "//mojo/edk/system", |
| 111 "//mojo/message_pump", | 112 "//mojo/message_pump", |
| 112 "//mojo/shell", | 113 "//mojo/shell", |
| 113 "//mojo/shell/runner:init", | 114 "//mojo/shell/runner:init", |
| 114 "//mojo/shell/runner/common", | 115 "//mojo/shell/runner/common", |
| 115 "//testing/gtest", | 116 "//testing/gtest", |
| 116 ] | 117 ] |
| 117 } | 118 } |
| OLD | NEW |