| 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 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 ] | 309 ] |
| 310 | 310 |
| 311 deps = [ | 311 deps = [ |
| 312 ":lib", | 312 ":lib", |
| 313 ":external_application_registrar_connection", | 313 ":external_application_registrar_connection", |
| 314 ":external_application_registrar_bindings", | 314 ":external_application_registrar_bindings", |
| 315 "//base", | 315 "//base", |
| 316 "//base/test:test_support", | 316 "//base/test:test_support", |
| 317 "//testing/gtest", | 317 "//testing/gtest", |
| 318 "//url", | 318 "//url", |
| 319 "//mojo/application", |
| 319 "//mojo/application_manager", | 320 "//mojo/application_manager", |
| 320 "//mojo/common", | 321 "//mojo/common", |
| 321 "//mojo/edk/system", | 322 "//mojo/edk/system", |
| 322 "//mojo/environment:chromium", | 323 "//mojo/environment:chromium", |
| 323 "//mojo/shell/domain_socket", | 324 "//mojo/shell/domain_socket", |
| 324 "//mojo/shell/domain_socket:tests", | 325 "//mojo/shell/domain_socket:tests", |
| 325 ] | 326 ] |
| 326 | 327 |
| 327 if (is_win) { | 328 if (is_win) { |
| 328 sources -= [ | 329 sources -= [ |
| 329 "incoming_connection_listener_unittest.cc", | 330 "incoming_connection_listener_unittest.cc", |
| 330 "external_application_listener_unittest.cc", | 331 "external_application_listener_unittest.cc", |
| 331 ] | 332 ] |
| 332 | 333 |
| 333 deps -= [ | 334 deps -= [ |
| 334 ":lib", | 335 ":lib", |
| 335 ":external_application_registrar_connection", | 336 ":external_application_registrar_connection", |
| 336 ":external_application_registrar_bindings", | 337 ":external_application_registrar_bindings", |
| 337 "//mojo/shell/domain_socket", | 338 "//mojo/shell/domain_socket", |
| 338 "//mojo/shell/domain_socket:tests", | 339 "//mojo/shell/domain_socket:tests", |
| 339 ] | 340 ] |
| 340 } | 341 } |
| 341 } | 342 } |
| OLD | NEW |