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 | 9 |
9 # 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 |
10 # inherently components. | 11 # inherently components. |
11 assert(!is_component_build) | 12 assert(!is_component_build) |
12 | 13 |
13 group("shell") { | 14 group("shell") { |
14 testonly = true | 15 testonly = true |
15 | 16 |
16 deps = [ | 17 deps = [ |
17 ":mojo_shell", | 18 ":mojo_shell", |
(...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
496 | 497 |
497 deps -= [ | 498 deps -= [ |
498 ":lib", | 499 ":lib", |
499 ":external_application_registrar_connection", | 500 ":external_application_registrar_connection", |
500 ":external_application_registrar_bindings", | 501 ":external_application_registrar_bindings", |
501 "//shell/domain_socket", | 502 "//shell/domain_socket", |
502 "//shell/domain_socket:tests", | 503 "//shell/domain_socket:tests", |
503 ] | 504 ] |
504 } | 505 } |
505 } | 506 } |
OLD | NEW |