| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//mojo/public/mojo.gni") | 6 import("//mojo/public/mojo.gni") |
| 7 import("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
| 8 | 8 |
| 9 # We don't support building in the component build since mojo apps are | 9 # We don't support building in the component build since mojo apps are |
| 10 # inherently components. | 10 # inherently components. |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 "//mojo/application", | 112 "//mojo/application", |
| 113 "//mojo/application_manager", | 113 "//mojo/application_manager", |
| 114 "//mojo/common", | 114 "//mojo/common", |
| 115 "//mojo/edk/system", | 115 "//mojo/edk/system", |
| 116 "//mojo/public/interfaces/application", | 116 "//mojo/public/interfaces/application", |
| 117 "//mojo/services/public/interfaces/network", | 117 "//mojo/services/public/interfaces/network", |
| 118 "//mojo/shell/domain_socket", | 118 "//mojo/shell/domain_socket", |
| 119 "//mojo/spy", | 119 "//mojo/spy", |
| 120 ] | 120 ] |
| 121 | 121 |
| 122 if (is_win) { |
| 123 deps -= [ |
| 124 "//mojo/shell/domain_socket", |
| 125 ] |
| 126 } |
| 127 |
| 122 if (is_android) { | 128 if (is_android) { |
| 123 sources += [ | 129 sources += [ |
| 124 "network_application_loader.cc", | 130 "network_application_loader.cc", |
| 125 "network_application_loader.h", | 131 "network_application_loader.h", |
| 126 ] | 132 ] |
| 127 | 133 |
| 128 deps += [ | 134 deps += [ |
| 129 "//mojo/services/native_viewport:lib", | 135 "//mojo/services/native_viewport:lib", |
| 130 "//mojo/services/network:lib", | 136 "//mojo/services/network:lib", |
| 131 ] | 137 ] |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 deps = [ "//mojo/public/interfaces/application" ] | 216 deps = [ "//mojo/public/interfaces/application" ] |
| 211 } | 217 } |
| 212 | 218 |
| 213 source_set("external_application_registrar_connection") { | 219 source_set("external_application_registrar_connection") { |
| 214 sources = [ | 220 sources = [ |
| 215 "external_application_registrar_connection.cc", | 221 "external_application_registrar_connection.cc", |
| 216 "external_application_registrar_connection.h", | 222 "external_application_registrar_connection.h", |
| 217 ] | 223 ] |
| 218 | 224 |
| 219 deps = [ | 225 deps = [ |
| 220 ":external_application_registrar_bindings", | 226 ":external_application_registrar_bindings", |
| 221 "//mojo/shell/domain_socket" | 227 "//mojo/shell/domain_socket" |
| 222 ] | 228 ] |
| 223 } | 229 } |
| 224 | 230 |
| 225 # GYP version: mojo/mojo.gyp:mojo_shell_tests | 231 # GYP version: mojo/mojo.gyp:mojo_shell_tests |
| 226 test("mojo_shell_tests") { | 232 test("mojo_shell_tests") { |
| 227 sources = [ | 233 sources = [ |
| 228 "child_process_host_unittest.cc", | 234 "child_process_host_unittest.cc", |
| 229 "data_pipe_peek_unittest.cc", | 235 "data_pipe_peek_unittest.cc", |
| 230 "dynamic_application_loader_unittest.cc", | 236 "dynamic_application_loader_unittest.cc", |
| 231 "in_process_dynamic_service_runner_unittest.cc", | 237 "in_process_dynamic_service_runner_unittest.cc", |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 "//base/test:test_support", | 298 "//base/test:test_support", |
| 293 "//testing/gtest", | 299 "//testing/gtest", |
| 294 "//url", | 300 "//url", |
| 295 "//mojo/application_manager", | 301 "//mojo/application_manager", |
| 296 "//mojo/common", | 302 "//mojo/common", |
| 297 "//mojo/edk/system", | 303 "//mojo/edk/system", |
| 298 "//mojo/environment:chromium", | 304 "//mojo/environment:chromium", |
| 299 "//mojo/shell/domain_socket:tests", | 305 "//mojo/shell/domain_socket:tests", |
| 300 ] | 306 ] |
| 301 } | 307 } |
| OLD | NEW |