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

Side by Side Diff: mojo/mojo_public.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_apps.gypi ('k') | mojo/public/bindings/generators/js_templates/module.js.tmpl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'targets': [ 2 'targets': [
3 { 3 {
4 'target_name': 'mojo_public_test_support', 4 'target_name': 'mojo_public_test_support',
5 'type': 'static_library', 5 'type': 'static_library',
6 'dependencies': [ 6 'dependencies': [
7 '../base/base.gyp:base', 7 '../base/base.gyp:base',
8 '../testing/gtest.gyp:gtest', 8 '../testing/gtest.gyp:gtest',
9 'mojo_system', 9 'mojo_system',
10 ], 10 ],
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 'public/bindings/lib/connector.h', 71 'public/bindings/lib/connector.h',
72 'public/bindings/lib/message.cc', 72 'public/bindings/lib/message.cc',
73 'public/bindings/lib/message.h', 73 'public/bindings/lib/message.h',
74 'public/bindings/lib/message_builder.cc', 74 'public/bindings/lib/message_builder.cc',
75 'public/bindings/lib/message_builder.h', 75 'public/bindings/lib/message_builder.h',
76 'public/bindings/lib/message_queue.cc', 76 'public/bindings/lib/message_queue.cc',
77 'public/bindings/lib/message_queue.h', 77 'public/bindings/lib/message_queue.h',
78 ], 78 ],
79 }, 79 },
80 { 80 {
81 'target_name': 'mojo_js_bindings',
82 'type': 'static_library',
83 'include_dirs': [
84 '..'
85 ],
86 'dependencies': [
87 '../gin/gin.gyp:gin',
88 'mojo_system',
89 ],
90 'export_dependent_settings': [
91 '../gin/gin.gyp:gin',
92 ],
93 'sources': [
94 'public/bindings/js/core.cc',
95 'public/bindings/js/core.h',
96 'public/bindings/js/handle.cc',
97 'public/bindings/js/handle.h',
98 'public/bindings/js/support.cc',
99 'public/bindings/js/support.h',
100 'public/bindings/js/waiting_callback.cc',
101 'public/bindings/js/waiting_callback.h',
102 ],
103 },
104 {
105 'target_name': 'sample_service', 81 'target_name': 'sample_service',
106 'type': 'static_library', 82 'type': 'static_library',
107 'sources': [ 83 'sources': [
108 'public/bindings/sample/sample_service.mojom', 84 'public/bindings/sample/sample_service.mojom',
109 ], 85 ],
110 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], 86 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ],
111 'export_dependent_settings': [ 87 'export_dependent_settings': [
112 'mojo_bindings', 88 'mojo_bindings',
113 'mojo_system', 89 'mojo_system',
114 ], 90 ],
115 }, 91 },
116 { 92 {
117 'target_name': 'mojo_bindings_unittests', 93 'target_name': 'mojo_bindings_unittests',
118 'type': 'executable', 94 'type': 'executable',
119 'sources': [ 95 'sources': [
120 'public/bindings/sample/sample_service_unittests.cc', 96 'public/bindings/sample/sample_service_unittests.cc',
121 ], 97 ],
122 'dependencies': [ 98 'dependencies': [
123 '../testing/gtest.gyp:gtest', 99 '../testing/gtest.gyp:gtest',
124 'mojo_public_test_support', 100 'mojo_public_test_support',
125 'mojo_run_all_unittests', 101 'mojo_run_all_unittests',
126 'sample_service', 102 'sample_service',
127 ], 103 ],
128 }, 104 },
129 { 105 {
130 'target_name': 'mojo_js_bindings_unittests',
131 'type': 'executable',
132 'dependencies': [
133 '../gin/gin.gyp:gin_test',
134 'mojo_js_bindings',
135 'mojo_run_all_unittests',
136 'sample_service',
137 ],
138 'sources': [
139 'public/bindings/js/test/run_js_tests.cc',
140 ],
141 },
142 {
143 'target_name': 'gles2_client_impl', 106 'target_name': 'gles2_client_impl',
144 'type': 'static_library', 107 'type': 'static_library',
145 'dependencies': [ 108 'dependencies': [
146 '../gpu/gpu.gyp:gles2_c_lib', 109 '../gpu/gpu.gyp:gles2_c_lib',
147 'gles2', 110 'gles2',
148 ], 111 ],
149 'export_dependent_settings': [ 112 'export_dependent_settings': [
150 'gles2', 113 'gles2',
151 ], 114 ],
152 'sources': [ 115 'sources': [
153 'public/bindings/gles2_client/gles2_client_impl.cc', 116 'public/bindings/gles2_client/gles2_client_impl.cc',
154 'public/bindings/gles2_client/gles2_client_impl.h', 117 'public/bindings/gles2_client/gles2_client_impl.h',
155 ], 118 ],
156 }, 119 },
157 ], 120 ],
158 } 121 }
OLDNEW
« no previous file with comments | « mojo/mojo_apps.gypi ('k') | mojo/public/bindings/generators/js_templates/module.js.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698