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

Side by Side Diff: mojo/mojo_apps.gypi

Issue 100573003: [Mojo] Move JS bindings out of public (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix header guards Created 7 years 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 | Annotate | Revision Log
« no previous file with comments | « mojo/mojo.gyp ('k') | mojo/mojo_public.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 {
2 'targets': [
3 {
4 'target_name': 'mojo_js_lib',
5 'type': 'static_library',
6 'dependencies': [
7 '../base/base.gyp:base',
8 '../gin/gin.gyp:gin',
9 'hello_world_service',
10 'mojo_common_lib',
11 'mojo_system',
12 ],
13 'export_dependent_settings': [
14 '../base/base.gyp:base',
15 '../gin/gin.gyp:gin',
16 'hello_world_service',
17 'mojo_common_lib',
18 'mojo_system',
19 ],
20 'sources': [
21 'apps/js/mojo_runner_delegate.cc',
22 'apps/js/mojo_runner_delegate.h',
23 'apps/js/bindings/threading.cc',
24 'apps/js/bindings/threading.h',
25 'apps/js/bindings/core.cc',
26 'apps/js/bindings/core.h',
27 'apps/js/bindings/handle.cc',
28 'apps/js/bindings/handle.h',
29 'apps/js/bindings/support.cc',
30 'apps/js/bindings/support.h',
31 'apps/js/bindings/waiting_callback.cc',
32 'apps/js/bindings/waiting_callback.h',
33 ],
34 },
35 {
36 'target_name': 'mojo_js_unittests',
37 'type': 'executable',
38 'dependencies': [
39 '../gin/gin.gyp:gin_test',
40 'mojo_js_lib',
41 'mojo_run_all_unittests',
42 'sample_service',
43 ],
44 'sources': [
45 'apps/js/test/run_js_tests.cc',
46 ],
47 },
48 {
49 'target_name': 'mojo_js',
50 'type': 'shared_library',
51 'dependencies': [
52 'mojo_js_lib',
53 ],
54 'sources': [
55 'apps/js/main.cc',
56 ],
57 },
58 ],
59 }
OLDNEW
« no previous file with comments | « mojo/mojo.gyp ('k') | mojo/mojo_public.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698