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 |
5 group("examples") { | 7 group("examples") { |
| 8 testonly = true |
| 9 |
6 deps = [ | 10 deps = [ |
| 11 "//mojo/examples/apptest", |
| 12 "//mojo/examples/compositor_app", |
| 13 "//mojo/examples/content_handler_demo", |
7 "//mojo/examples/echo", | 14 "//mojo/examples/echo", |
| 15 "//mojo/examples/pepper_container_app", |
| 16 "//mojo/examples/png_viewer", |
8 "//mojo/examples/sample_app", | 17 "//mojo/examples/sample_app", |
9 "//mojo/examples/surfaces_app", | 18 "//mojo/examples/surfaces_app", |
10 "//mojo/examples/wget", | 19 "//mojo/examples/wget", |
11 ] | 20 ] |
| 21 |
| 22 if (use_aura) { |
| 23 deps += [ |
| 24 "//mojo/examples/aura_demo:mojo_aura_demo", |
| 25 "//mojo/examples/browser", |
| 26 "//mojo/examples/demo_launcher", |
| 27 "//mojo/examples/embedded_app", |
| 28 "//mojo/examples/media_viewer", |
| 29 "//mojo/examples/nesting_app", |
| 30 "//mojo/examples/keyboard", |
| 31 "//mojo/examples/window_manager", |
| 32 "//mojo/examples/wm_flow", |
| 33 ] |
| 34 } |
| 35 |
| 36 if (is_linux) { |
| 37 deps += [ |
| 38 "//mojo/examples/dbus_echo", |
| 39 ] |
| 40 } |
12 } | 41 } |
OLD | NEW |