| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 "out_of_process_native_runner.h", | 68 "out_of_process_native_runner.h", |
| 69 ] | 69 ] |
| 70 | 70 |
| 71 deps = [ | 71 deps = [ |
| 72 ":child_process_base", | 72 ":child_process_base", |
| 73 ":native_application_support", | 73 ":native_application_support", |
| 74 "//base", | 74 "//base", |
| 75 "//base:base_static", | 75 "//base:base_static", |
| 76 "//base:i18n", | 76 "//base:i18n", |
| 77 "//mojo/edk/system", | 77 "//mojo/edk/system", |
| 78 "//mojo/gles2", | |
| 79 "//mojo/message_pump", | 78 "//mojo/message_pump", |
| 80 "//mojo/platform_handle:platform_handle_impl", | 79 "//mojo/platform_handle:platform_handle_impl", |
| 81 "//mojo/shell", | 80 "//mojo/shell", |
| 82 "//mojo/shell/runner:init", | 81 "//mojo/shell/runner:init", |
| 83 "//mojo/shell/runner/child:interfaces", | 82 "//mojo/shell/runner/child:interfaces", |
| 84 "//mojo/shell/runner/common", | 83 "//mojo/shell/runner/common", |
| 85 ] | 84 ] |
| 86 | 85 |
| 87 if (is_linux && !is_android) { | 86 if (is_linux && !is_android) { |
| 88 sources += [ | 87 sources += [ |
| (...skipping 14 matching lines...) Expand all Loading... |
| 103 sources = [ | 102 sources = [ |
| 104 "child_process_host_unittest.cc", | 103 "child_process_host_unittest.cc", |
| 105 "host_unittests.cc", | 104 "host_unittests.cc", |
| 106 "in_process_native_runner_unittest.cc", | 105 "in_process_native_runner_unittest.cc", |
| 107 ] | 106 ] |
| 108 | 107 |
| 109 deps = [ | 108 deps = [ |
| 110 ":lib", | 109 ":lib", |
| 111 "//base", | 110 "//base", |
| 112 "//base/test:test_support", | 111 "//base/test:test_support", |
| 113 "//mojo/common", | |
| 114 "//mojo/edk/system", | 112 "//mojo/edk/system", |
| 115 "//mojo/environment:chromium", | |
| 116 "//mojo/message_pump", | 113 "//mojo/message_pump", |
| 117 "//mojo/shell/runner:init", | 114 "//mojo/shell/runner:init", |
| 118 "//mojo/shell/runner/common", | 115 "//mojo/shell/runner/common", |
| 119 "//testing/gtest", | 116 "//testing/gtest", |
| 120 ] | 117 ] |
| 121 } | 118 } |
| OLD | NEW |