OLD | NEW |
1 { | 1 { |
2 'targets': [ | 2 'targets': [ |
3 { | 3 { |
4 'target_name': 'mojo_system', | 4 'target_name': 'mojo_system', |
5 'type': 'static_library', | 5 'type': 'static_library', |
6 'defines': [ | 6 'defines': [ |
7 'MOJO_SYSTEM_IMPLEMENTATION', | 7 'MOJO_SYSTEM_IMPLEMENTATION', |
8 ], | 8 ], |
9 'include_dirs': [ | 9 'include_dirs': [ |
10 '..', | 10 '..', |
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
342 'public/cpp/utility/lib/mutex.cc', | 342 'public/cpp/utility/lib/mutex.cc', |
343 'public/cpp/utility/lib/thread.cc', | 343 'public/cpp/utility/lib/thread.cc', |
344 ], | 344 ], |
345 }], | 345 }], |
346 ], | 346 ], |
347 'include_dirs': [ | 347 'include_dirs': [ |
348 '..', | 348 '..', |
349 ], | 349 ], |
350 }, | 350 }, |
351 { | 351 { |
352 'target_name': 'mojo_geometry_bindings', | |
353 'type': 'static_library', | |
354 'sources': [ | |
355 'public/interfaces/geometry/geometry.mojom', | |
356 ], | |
357 'variables': { | |
358 'mojom_base_output_dir': 'mojo', | |
359 }, | |
360 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], | |
361 'dependencies': [ | |
362 'mojo_cpp_bindings', | |
363 ], | |
364 'export_dependent_settings': [ | |
365 'mojo_cpp_bindings', | |
366 ], | |
367 }, | |
368 { | |
369 'target_name': 'mojo_service_provider_bindings', | 352 'target_name': 'mojo_service_provider_bindings', |
370 'type': 'static_library', | 353 'type': 'static_library', |
371 'sources': [ | 354 'sources': [ |
372 'public/interfaces/service_provider/service_provider.mojom', | 355 'public/interfaces/service_provider/service_provider.mojom', |
373 ], | 356 ], |
374 'variables': { | 357 'variables': { |
375 'mojom_base_output_dir': 'mojo', | 358 'mojom_base_output_dir': 'mojo', |
376 }, | 359 }, |
377 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], | 360 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], |
378 'dependencies': [ | 361 'dependencies': [ |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
419 }, | 402 }, |
420 'dependencies': [ | 403 'dependencies': [ |
421 'mojo_public_java', | 404 'mojo_public_java', |
422 ], | 405 ], |
423 'includes': [ '../build/java.gypi' ], | 406 'includes': [ '../build/java.gypi' ], |
424 }, | 407 }, |
425 ], | 408 ], |
426 }], | 409 }], |
427 ], | 410 ], |
428 } | 411 } |
OLD | NEW |