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

Side by Side Diff: mojo/mojo_public.gypi

Issue 206923002: Adds plumbing to pass WebUI mojo::Handle from browser to renderer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add TODO and merge to trunk Created 6 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 | Annotate | Revision Log
« no previous file with comments | « mojo/mojo_examples.gypi ('k') | mojo/mojo_services.gypi » ('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_system', 4 'target_name': 'mojo_system',
5 'type': 'shared_library', 5 'type': 'shared_library',
6 'defines': [ 6 'defines': [
7 'MOJO_SYSTEM_IMPLEMENTATION', 7 'MOJO_SYSTEM_IMPLEMENTATION',
8 ], 8 ],
9 'include_dirs': [ 9 'include_dirs': [
10 '..', 10 '..',
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 'public/bindings/tests/math_calculator.mojom', 150 'public/bindings/tests/math_calculator.mojom',
151 'public/bindings/tests/remote_ptr_unittest.cc', 151 'public/bindings/tests/remote_ptr_unittest.cc',
152 'public/bindings/tests/request_response_unittest.cc', 152 'public/bindings/tests/request_response_unittest.cc',
153 'public/bindings/tests/router_unittest.cc', 153 'public/bindings/tests/router_unittest.cc',
154 'public/bindings/tests/sample_factory.mojom', 154 'public/bindings/tests/sample_factory.mojom',
155 'public/bindings/tests/sample_interfaces.mojom', 155 'public/bindings/tests/sample_interfaces.mojom',
156 'public/bindings/tests/sample_service_unittest.cc', 156 'public/bindings/tests/sample_service_unittest.cc',
157 'public/bindings/tests/test_structs.mojom', 157 'public/bindings/tests/test_structs.mojom',
158 'public/bindings/tests/type_conversion_unittest.cc', 158 'public/bindings/tests/type_conversion_unittest.cc',
159 ], 159 ],
160 'variables': {
161 'mojom_base_output_dir': 'mojo',
162 },
160 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], 163 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ],
161 }, 164 },
162 { 165 {
163 'target_name': 'mojo_public_environment_unittests', 166 'target_name': 'mojo_public_environment_unittests',
164 'type': 'executable', 167 'type': 'executable',
165 'dependencies': [ 168 'dependencies': [
166 '../base/base.gyp:base', 169 '../base/base.gyp:base',
167 '../testing/gtest.gyp:gtest', 170 '../testing/gtest.gyp:gtest',
168 'mojo_environment_standalone', 171 'mojo_environment_standalone',
169 'mojo_public_test_utils', 172 'mojo_public_test_utils',
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 'include_dirs': [ 244 'include_dirs': [
242 '..' 245 '..'
243 ], 246 ],
244 'sources': [ 247 'sources': [
245 'public/bindings/allocation_scope.h', 248 'public/bindings/allocation_scope.h',
246 'public/bindings/array.h', 249 'public/bindings/array.h',
247 'public/bindings/buffer.h', 250 'public/bindings/buffer.h',
248 'public/bindings/callback.h', 251 'public/bindings/callback.h',
249 'public/bindings/error_handler.h', 252 'public/bindings/error_handler.h',
250 'public/bindings/interface.h', 253 'public/bindings/interface.h',
254 'public/bindings/js/constants.cc',
255 'public/bindings/js/constants.h',
251 'public/bindings/message.h', 256 'public/bindings/message.h',
252 'public/bindings/passable.h', 257 'public/bindings/passable.h',
253 'public/bindings/remote_ptr.h', 258 'public/bindings/remote_ptr.h',
254 'public/bindings/sync_dispatcher.h', 259 'public/bindings/sync_dispatcher.h',
255 'public/bindings/type_converter.h', 260 'public/bindings/type_converter.h',
256 'public/bindings/lib/array.cc', 261 'public/bindings/lib/array.cc',
257 'public/bindings/lib/array_internal.h', 262 'public/bindings/lib/array_internal.h',
258 'public/bindings/lib/array_internal.cc', 263 'public/bindings/lib/array_internal.cc',
259 'public/bindings/lib/bindings_internal.h', 264 'public/bindings/lib/bindings_internal.h',
260 'public/bindings/lib/bindings_serialization.cc', 265 'public/bindings/lib/bindings_serialization.cc',
(...skipping 21 matching lines...) Expand all
282 ], 287 ],
283 }, 288 },
284 { 289 {
285 'target_name': 'mojo_sample_service', 290 'target_name': 'mojo_sample_service',
286 'type': 'static_library', 291 'type': 'static_library',
287 'sources': [ 292 'sources': [
288 'public/bindings/tests/sample_service.mojom', 293 'public/bindings/tests/sample_service.mojom',
289 'public/bindings/tests/sample_import.mojom', 294 'public/bindings/tests/sample_import.mojom',
290 'public/bindings/tests/sample_import2.mojom', 295 'public/bindings/tests/sample_import2.mojom',
291 ], 296 ],
297 'variables': {
298 'mojom_base_output_dir': 'mojo',
299 },
292 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], 300 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ],
293 'export_dependent_settings': [ 301 'export_dependent_settings': [
294 'mojo_bindings', 302 'mojo_bindings',
295 'mojo_system', 303 'mojo_system',
296 ], 304 ],
297 'dependencies': [ 305 'dependencies': [
298 'mojo_bindings', 306 'mojo_bindings',
299 'mojo_system', 307 'mojo_system',
300 ], 308 ],
301 }, 309 },
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 { 356 {
349 'target_name': 'mojo_shell_bindings', 357 'target_name': 'mojo_shell_bindings',
350 'type': 'static_library', 358 'type': 'static_library',
351 'sources': [ 359 'sources': [
352 'public/shell/lib/application.cc', 360 'public/shell/lib/application.cc',
353 'public/shell/lib/service.cc', 361 'public/shell/lib/service.cc',
354 'public/shell/application.h', 362 'public/shell/application.h',
355 'public/shell/service.h', 363 'public/shell/service.h',
356 'public/shell/shell.mojom', 364 'public/shell/shell.mojom',
357 ], 365 ],
366 'variables': {
367 'mojom_base_output_dir': 'mojo',
368 },
358 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], 369 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ],
359 'dependencies': [ 370 'dependencies': [
360 'mojo_bindings', 371 'mojo_bindings',
361 'mojo_system', 372 'mojo_system',
362 ], 373 ],
363 'export_dependent_settings': [ 374 'export_dependent_settings': [
364 'mojo_bindings', 375 'mojo_bindings',
365 'mojo_system', 376 'mojo_system',
366 ], 377 ],
367 }, 378 },
368 ], 379 ],
369 } 380 }
OLDNEW
« no previous file with comments | « mojo/mojo_examples.gypi ('k') | mojo/mojo_services.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698