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 | 6 |
7 group("examples") { | 7 group("examples") { |
8 testonly = true | 8 testonly = true |
9 | 9 |
10 deps = [ | 10 deps = [ |
11 "//examples/apptest", | 11 "//examples/apptest", |
12 "//examples/browser", | 12 "//examples/browser", |
13 "//examples/content_handler_demo", | 13 "//examples/content_handler_demo", |
14 "//examples/dart/console_example", | 14 "//examples/dart/console_example", |
15 "//examples/dart/device_info", | 15 "//examples/dart/device_info", |
16 "//examples/dart/hello_world/hello", | 16 "//examples/dart/hello_world/hello", |
17 "//examples/dart/hello_world/world", | 17 "//examples/dart/hello_world/world", |
18 "//examples/dart/netcat", | 18 "//examples/dart/netcat", |
19 "//examples/dart/wget", | 19 "//examples/dart/wget", |
20 "//examples/echo", | 20 "//examples/echo", |
21 "//examples/echo_terminal", | 21 "//examples/echo_terminal", |
22 "//examples/embedded_app", | 22 "//examples/embedded_app", |
23 "//examples/forwarding_content_handler", | 23 "//examples/forwarding_content_handler", |
24 "//examples/ganesh_app", | 24 "//examples/ganesh_app", |
25 "//examples/http_handler", | 25 "//examples/http_handler", |
26 "//examples/indirect_service", | 26 "//examples/indirect_service", |
| 27 "//examples/keyboard_client", |
27 "//examples/nesting_app", | 28 "//examples/nesting_app", |
28 "//examples/png_viewer", | 29 "//examples/png_viewer", |
29 "//examples/recursive_content_handler", | 30 "//examples/recursive_content_handler", |
30 "//examples/sky_compositor_app", | 31 "//examples/sky_compositor_app", |
31 "//examples/spinning_cube", | 32 "//examples/spinning_cube", |
32 "//examples/surfaces_app", | 33 "//examples/surfaces_app", |
33 "//examples/tiny", | 34 "//examples/tiny", |
34 "//examples/wget", | 35 "//examples/wget", |
35 "//examples/window_manager", | 36 "//examples/window_manager", |
36 "//examples/wm_flow", | 37 "//examples/wm_flow", |
(...skipping 11 matching lines...) Expand all Loading... |
48 } | 49 } |
49 | 50 |
50 if (is_android && defined(go_build_tool) && go_build_tool != "") { | 51 if (is_android && defined(go_build_tool) && go_build_tool != "") { |
51 deps += [ "//examples/go" ] | 52 deps += [ "//examples/go" ] |
52 } | 53 } |
53 | 54 |
54 if (is_linux) { | 55 if (is_linux) { |
55 deps += [ "//examples/python" ] | 56 deps += [ "//examples/python" ] |
56 } | 57 } |
57 } | 58 } |
OLD | NEW |