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("//mojo/generate_mojo_shell_assets_list.gni") | 5 import("//mojo/generate_mojo_shell_assets_list.gni") |
6 import("//mojo/public/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 8 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
9 | 9 |
10 # We don't support building in the component build since mojo apps are | |
11 # inherently components. | |
12 assert(!is_component_build) | |
13 | |
14 group("runner") { | 10 group("runner") { |
15 testonly = true | 11 testonly = true |
16 | 12 |
17 deps = [ | 13 deps = [ |
18 ":mojo_runner", | 14 ":mojo_runner", |
19 "//mojo/runner/child", | 15 "//mojo/runner/child", |
20 ] | 16 ] |
21 } | 17 } |
22 | 18 |
23 if (is_android) { | 19 if (is_android) { |
(...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
496 ] | 492 ] |
497 | 493 |
498 deps = [ | 494 deps = [ |
499 "//base", | 495 "//base", |
500 "//mojo/application/public/cpp:test_support", | 496 "//mojo/application/public/cpp:test_support", |
501 "//mojo/runner/test:bindings", | 497 "//mojo/runner/test:bindings", |
502 "//mojo/services/network/public/interfaces", | 498 "//mojo/services/network/public/interfaces", |
503 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 499 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
504 ] | 500 ] |
505 } | 501 } |
OLD | NEW |