| 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 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 # We don't support building in the component build since mojo apps are | 10 # We don't support building in the component build since mojo apps are |
| (...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 414 "url_resolver_unittest.cc", | 414 "url_resolver_unittest.cc", |
| 415 ] | 415 ] |
| 416 | 416 |
| 417 deps = [ | 417 deps = [ |
| 418 ":in_process_dynamic_service_runner", | 418 ":in_process_dynamic_service_runner", |
| 419 ":lib", | 419 ":lib", |
| 420 "//base", | 420 "//base", |
| 421 "//base:i18n", | 421 "//base:i18n", |
| 422 "//base/test:test_support", | 422 "//base/test:test_support", |
| 423 "//testing/gtest", | 423 "//testing/gtest", |
| 424 "//net:test_support", | |
| 425 "//url", | 424 "//url", |
| 426 "//mojo/common", | 425 "//mojo/common", |
| 427 "//mojo/edk/system", | 426 "//mojo/edk/system", |
| 428 "//mojo/environment:chromium", | 427 "//mojo/environment:chromium", |
| 429 "//mojo/public/cpp/bindings", | 428 "//mojo/public/cpp/bindings", |
| 430 "//services/test_service:bindings", | 429 "//services/test_service:bindings", |
| 431 "//shell/application_manager", | 430 "//shell/application_manager", |
| 432 ] | 431 ] |
| 433 | 432 |
| 434 datadeps = [ | 433 datadeps = [ |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 499 | 498 |
| 500 deps -= [ | 499 deps -= [ |
| 501 ":lib", | 500 ":lib", |
| 502 ":external_application_registrar_connection", | 501 ":external_application_registrar_connection", |
| 503 ":external_application_registrar_bindings", | 502 ":external_application_registrar_bindings", |
| 504 "//shell/domain_socket", | 503 "//shell/domain_socket", |
| 505 "//shell/domain_socket:tests", | 504 "//shell/domain_socket:tests", |
| 506 ] | 505 ] |
| 507 } | 506 } |
| 508 } | 507 } |
| OLD | NEW |