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/nacl/config.gni") | 5 import("//build/config/nacl/config.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 | 7 |
8 # Collection of examples which are currently capable of being built as pexes. | 8 # Collection of examples which are currently capable of being built as pexes. |
9 # TODO(smklein): Make all examples build as pexes. | 9 # TODO(smklein): Make all examples build as pexes. |
10 group("portable_examples") { | 10 group("portable_examples") { |
11 testonly = true | 11 testonly = true |
12 | 12 |
13 deps = [ | 13 deps = [ |
14 "//examples/apptest", | 14 "//examples/apptest", |
15 "//examples/audio_play_test", | 15 "//examples/audio_play_test", |
16 "//examples/content_handler_demo", | 16 "//examples/content_handler_demo", |
17 "//examples/dart", | 17 "//examples/dart", |
18 "//examples/echo", | 18 "//examples/echo", |
19 "//examples/echo_terminal", | 19 "//examples/echo_terminal", |
20 "//examples/embedded_app", | |
21 "//examples/forwarding_content_handler", | 20 "//examples/forwarding_content_handler", |
22 "//examples/ganesh_app", | |
23 "//examples/http_handler", | 21 "//examples/http_handler", |
24 "//examples/indirect_service", | 22 "//examples/indirect_service", |
25 "//examples/native_run_app", | 23 "//examples/native_run_app", |
26 "//examples/notification_generator", | 24 "//examples/notification_generator", |
27 "//examples/recursive_content_handler", | 25 "//examples/recursive_content_handler", |
28 "//examples/serialization", | 26 "//examples/serialization", |
29 "//examples/spinning_cube", | 27 "//examples/spinning_cube", |
30 "//examples/tiny", | 28 "//examples/tiny", |
31 "//examples/trace_me", | 29 "//examples/trace_me", |
32 "//examples/wget", | 30 "//examples/wget", |
(...skipping 23 matching lines...) Expand all Loading... |
56 } | 54 } |
57 | 55 |
58 if (is_linux && !is_fnl) { | 56 if (is_linux && !is_fnl) { |
59 deps += [ "//examples/python" ] | 57 deps += [ "//examples/python" ] |
60 } | 58 } |
61 | 59 |
62 if (mojo_use_nacl && (is_linux || is_android) && !is_asan) { | 60 if (mojo_use_nacl && (is_linux || is_android) && !is_asan) { |
63 deps += [ ":portable_examples(//build/toolchain/nacl:newlib_pnacl)" ] | 61 deps += [ ":portable_examples(//build/toolchain/nacl:newlib_pnacl)" ] |
64 } | 62 } |
65 } | 63 } |
OLD | NEW |