Chromium Code Reviews| 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 -= [ | |
|
jamesr
2014/11/04 18:56:06
+= ?
scottmg
2014/11/04 18:57:19
Thanks, sorry about that.
| |
| 124 "//mojo/shell/domain_socket", | |
| 125 ] | |
| 126 sources -= [ | |
| 127 "external_application_listener_posix.cc", | |
| 128 "incoming_connection_listener_posix.cc", | |
| 129 ] | |
| 130 } | |
| 131 | |
| 122 if (is_android) { | 132 if (is_android) { |
| 123 sources += [ | 133 sources += [ |
| 124 "network_application_loader.cc", | 134 "network_application_loader.cc", |
| 125 "network_application_loader.h", | 135 "network_application_loader.h", |
| 126 ] | 136 ] |
| 127 | 137 |
| 128 deps += [ | 138 deps += [ |
| 129 "//mojo/services/native_viewport:lib", | 139 "//mojo/services/native_viewport:lib", |
| 130 "//mojo/services/network:lib", | 140 "//mojo/services/network:lib", |
| 131 ] | 141 ] |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 210 deps = [ "//mojo/public/interfaces/application" ] | 220 deps = [ "//mojo/public/interfaces/application" ] |
| 211 } | 221 } |
| 212 | 222 |
| 213 source_set("external_application_registrar_connection") { | 223 source_set("external_application_registrar_connection") { |
| 214 sources = [ | 224 sources = [ |
| 215 "external_application_registrar_connection.cc", | 225 "external_application_registrar_connection.cc", |
| 216 "external_application_registrar_connection.h", | 226 "external_application_registrar_connection.h", |
| 217 ] | 227 ] |
| 218 | 228 |
| 219 deps = [ | 229 deps = [ |
| 220 ":external_application_registrar_bindings", | 230 ":external_application_registrar_bindings", |
| 221 "//mojo/shell/domain_socket" | 231 "//mojo/shell/domain_socket" |
| 222 ] | 232 ] |
| 223 } | 233 } |
| 224 | 234 |
| 225 # GYP version: mojo/mojo.gyp:mojo_shell_tests | 235 # GYP version: mojo/mojo.gyp:mojo_shell_tests |
| 226 test("mojo_shell_tests") { | 236 test("mojo_shell_tests") { |
| 227 sources = [ | 237 sources = [ |
| 228 "child_process_host_unittest.cc", | 238 "child_process_host_unittest.cc", |
| 229 "data_pipe_peek_unittest.cc", | 239 "data_pipe_peek_unittest.cc", |
| 230 "dynamic_application_loader_unittest.cc", | 240 "dynamic_application_loader_unittest.cc", |
| 231 "in_process_dynamic_service_runner_unittest.cc", | 241 "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", | 302 "//base/test:test_support", |
| 293 "//testing/gtest", | 303 "//testing/gtest", |
| 294 "//url", | 304 "//url", |
| 295 "//mojo/application_manager", | 305 "//mojo/application_manager", |
| 296 "//mojo/common", | 306 "//mojo/common", |
| 297 "//mojo/edk/system", | 307 "//mojo/edk/system", |
| 298 "//mojo/environment:chromium", | 308 "//mojo/environment:chromium", |
| 299 "//mojo/shell/domain_socket:tests", | 309 "//mojo/shell/domain_socket:tests", |
| 300 ] | 310 ] |
| 301 } | 311 } |
| OLD | NEW |