| 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 = [ |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 "//examples/forwarding_content_handler", | 22 "//examples/forwarding_content_handler", |
| 23 "//examples/ganesh_app", | 23 "//examples/ganesh_app", |
| 24 "//examples/http_handler", | 24 "//examples/http_handler", |
| 25 "//examples/indirect_service", | 25 "//examples/indirect_service", |
| 26 "//examples/keyboard_client", | 26 "//examples/keyboard_client", |
| 27 "//examples/nesting_app", | 27 "//examples/nesting_app", |
| 28 "//examples/nfc_sender", | 28 "//examples/nfc_sender", |
| 29 "//examples/notification_generator", | 29 "//examples/notification_generator", |
| 30 "//examples/png_viewer", | 30 "//examples/png_viewer", |
| 31 "//examples/recursive_content_handler", | 31 "//examples/recursive_content_handler", |
| 32 "//examples/sky_compositor_app", | |
| 33 "//examples/spinning_cube", | 32 "//examples/spinning_cube", |
| 34 "//examples/surfaces_app", | 33 "//examples/surfaces_app", |
| 35 "//examples/tiny", | 34 "//examples/tiny", |
| 36 "//examples/wget", | 35 "//examples/wget", |
| 37 "//examples/window_manager", | 36 "//examples/window_manager", |
| 38 "//examples/wm_flow", | 37 "//examples/wm_flow", |
| 39 ] | 38 ] |
| 40 | 39 |
| 41 if (!is_android) { | 40 if (!is_android) { |
| 42 deps += [ "//examples/pdf_viewer" ] | 41 deps += [ "//examples/pdf_viewer" ] |
| 43 } | 42 } |
| 44 | 43 |
| 45 if (is_android) { | 44 if (is_android) { |
| 46 deps += [ | 45 deps += [ |
| 47 "//examples/device_name", | 46 "//examples/device_name", |
| 48 "//examples/java_android/example_service", | 47 "//examples/java_android/example_service", |
| 49 "//examples/java_android/echo", | 48 "//examples/java_android/echo", |
| 50 ] | 49 ] |
| 51 } | 50 } |
| 52 | 51 |
| 53 if (defined(go_build_tool) && go_build_tool != "") { | 52 if (defined(go_build_tool) && go_build_tool != "") { |
| 54 deps += [ "//examples/go" ] | 53 deps += [ "//examples/go" ] |
| 55 } | 54 } |
| 56 | 55 |
| 57 if (is_linux) { | 56 if (is_linux) { |
| 58 deps += [ "//examples/python" ] | 57 deps += [ "//examples/python" ] |
| 59 } | 58 } |
| 60 } | 59 } |
| OLD | NEW |