| 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 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 ":java", | 353 ":java", |
| 354 "//base:base_java", | 354 "//base:base_java", |
| 355 ] | 355 ] |
| 356 } | 356 } |
| 357 } | 357 } |
| 358 | 358 |
| 359 mojom("app_child_process_bindings") { | 359 mojom("app_child_process_bindings") { |
| 360 sources = [ | 360 sources = [ |
| 361 "app_child_process.mojom", | 361 "app_child_process.mojom", |
| 362 ] | 362 ] |
| 363 |
| 364 deps = [ |
| 365 "//mojo/public/interfaces/application", |
| 366 ] |
| 363 } | 367 } |
| 364 | 368 |
| 365 mojom("external_application_registrar_bindings") { | 369 mojom("external_application_registrar_bindings") { |
| 366 sources = [ | 370 sources = [ |
| 367 "external_application_registrar.mojom", | 371 "external_application_registrar.mojom", |
| 368 ] | 372 ] |
| 369 | 373 |
| 370 deps = [ | 374 deps = [ |
| 371 "//mojo/public/interfaces/application", | 375 "//mojo/public/interfaces/application", |
| 372 ] | 376 ] |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 494 | 498 |
| 495 deps -= [ | 499 deps -= [ |
| 496 ":lib", | 500 ":lib", |
| 497 ":external_application_registrar_connection", | 501 ":external_application_registrar_connection", |
| 498 ":external_application_registrar_bindings", | 502 ":external_application_registrar_bindings", |
| 499 "//shell/domain_socket", | 503 "//shell/domain_socket", |
| 500 "//shell/domain_socket:tests", | 504 "//shell/domain_socket:tests", |
| 501 ] | 505 ] |
| 502 } | 506 } |
| 503 } | 507 } |
| OLD | NEW |