Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(46)

Side by Side Diff: examples/BUILD.gn

Issue 1809703003: Motown: Add examples/media_test, a command line media player app. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Tweaks based on feedback. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | examples/media_test/BUILD.gn » ('j') | examples/media_test/media_test.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/authentication_demo", 16 "//examples/authentication_demo",
17 "//examples/content_handler_demo", 17 "//examples/content_handler_demo",
18 "//examples/dart", 18 "//examples/dart",
19 "//examples/echo", 19 "//examples/echo",
20 "//examples/echo_terminal", 20 "//examples/echo_terminal",
21 "//examples/forwarding_content_handler", 21 "//examples/forwarding_content_handler",
22 "//examples/hello_mojo", 22 "//examples/hello_mojo",
23 "//examples/http_handler", 23 "//examples/http_handler",
24 "//examples/indirect_service", 24 "//examples/indirect_service",
25 "//examples/media_test",
25 "//examples/native_run_app", 26 "//examples/native_run_app",
26 "//examples/notification_generator", 27 "//examples/notification_generator",
27 "//examples/recursive_content_handler", 28 "//examples/recursive_content_handler",
28 "//examples/serialization", 29 "//examples/serialization",
29 "//examples/spinning_cube", 30 "//examples/spinning_cube",
30 "//examples/tiny", 31 "//examples/tiny",
31 "//examples/trace_me", 32 "//examples/trace_me",
32 "//examples/wget", 33 "//examples/wget",
33 ] 34 ]
34 } 35 }
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 } 69 }
69 70
70 if (is_linux && !is_fnl) { 71 if (is_linux && !is_fnl) {
71 deps += [ "//examples/python" ] 72 deps += [ "//examples/python" ]
72 } 73 }
73 74
74 if (mojo_use_nacl && (is_linux || is_android) && !is_asan) { 75 if (mojo_use_nacl && (is_linux || is_android) && !is_asan) {
75 deps += [ ":portable_examples(//build/toolchain/nacl:newlib_pnacl)" ] 76 deps += [ ":portable_examples(//build/toolchain/nacl:newlib_pnacl)" ]
76 } 77 }
77 } 78 }
OLDNEW
« no previous file with comments | « no previous file | examples/media_test/BUILD.gn » ('j') | examples/media_test/media_test.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698