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") | |
6 import("//mojo/generate_mojo_shell_assets_list.gni") | 5 import("//mojo/generate_mojo_shell_assets_list.gni") |
7 import("//third_party/mojo/src/mojo/public/mojo.gni") | 6 import("//mojo/public/mojo_application.gni") |
8 import("//third_party/mojo/src/mojo/public/mojo_application.gni") | 7 import("//testing/test.gni") |
9 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 8 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
10 import("//testing/test.gni") | |
11 | 9 |
12 # 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 |
13 # inherently components. | 11 # inherently components. |
14 assert(!is_component_build) | 12 assert(!is_component_build) |
15 | 13 |
16 group("runner") { | 14 group("runner") { |
17 testonly = true | 15 testonly = true |
18 | 16 |
19 deps = [ | 17 deps = [ |
20 ":mojo_runner", | 18 ":mojo_runner", |
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
439 ] | 437 ] |
440 | 438 |
441 deps = [ | 439 deps = [ |
442 "//base", | 440 "//base", |
443 "//mojo/application/public/cpp:test_support", | 441 "//mojo/application/public/cpp:test_support", |
444 "//mojo/runner/test:bindings", | 442 "//mojo/runner/test:bindings", |
445 "//mojo/services/network/public/interfaces", | 443 "//mojo/services/network/public/interfaces", |
446 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 444 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
447 ] | 445 ] |
448 } | 446 } |
OLD | NEW |