| Index: examples/BUILD.gn
|
| diff --git a/examples/BUILD.gn b/examples/BUILD.gn
|
| index 44ca966e2d2f2371cd127f37f25b2058fac4af1a..c7605c2d11a1f5ec3869fd80da99f59f5b301f82 100644
|
| --- a/examples/BUILD.gn
|
| +++ b/examples/BUILD.gn
|
| @@ -22,6 +22,7 @@ group("portable_examples") {
|
| "//examples/ganesh_app",
|
| "//examples/http_handler",
|
| "//examples/indirect_service",
|
| + "//examples/moterm_example_app",
|
| "//examples/native_run_app",
|
| "//examples/notification_generator",
|
| "//examples/recursive_content_handler",
|
| @@ -40,6 +41,11 @@ group("examples") {
|
| ":portable_examples",
|
| ]
|
|
|
| + # TODO(cstout) - javascript/v8 build support for fnl/musl
|
| + if (!is_android && !is_fnl) {
|
| + deps += [ "//examples/pdf_viewer" ]
|
| + }
|
| +
|
| if (is_android) {
|
| deps += [
|
| "//examples/device_name",
|
| @@ -48,6 +54,14 @@ group("examples") {
|
| ]
|
| }
|
|
|
| + if (is_linux || is_android) {
|
| + deps += [
|
| + "//examples/ui/spinning_cube",
|
| + "//examples/ui/tile",
|
| + "//examples/surfaces_app",
|
| + ]
|
| + }
|
| +
|
| if (defined(go_build_tool) && go_build_tool != "") {
|
| deps += [ "//examples/go" ]
|
| if (is_android) {
|
|
|