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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
340 'public/cpp/utility/lib/mutex.cc', | 340 'public/cpp/utility/lib/mutex.cc', |
341 'public/cpp/utility/lib/thread.cc', | 341 'public/cpp/utility/lib/thread.cc', |
342 ], | 342 ], |
343 }], | 343 }], |
344 ], | 344 ], |
345 'include_dirs': [ | 345 'include_dirs': [ |
346 '..', | 346 '..', |
347 ], | 347 ], |
348 }, | 348 }, |
349 { | 349 { |
350 'target_name': 'mojo_geometry_bindings', | |
351 'type': 'static_library', | |
352 'sources': [ | |
353 'public/interfaces/geometry/geometry.mojom', | |
354 ], | |
355 'variables': { | |
356 'mojom_base_output_dir': 'mojo', | |
357 }, | |
358 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], | |
359 'dependencies': [ | |
360 'mojo_cpp_bindings', | |
361 ], | |
362 'export_dependent_settings': [ | |
363 'mojo_cpp_bindings', | |
364 ], | |
365 }, | |
366 { | |
367 'target_name': 'mojo_service_provider_bindings', | 350 'target_name': 'mojo_service_provider_bindings', |
368 'type': 'static_library', | 351 'type': 'static_library', |
369 'sources': [ | 352 'sources': [ |
370 'public/interfaces/service_provider/service_provider.mojom', | 353 'public/interfaces/service_provider/service_provider.mojom', |
371 ], | 354 ], |
372 'variables': { | 355 'variables': { |
373 'mojom_base_output_dir': 'mojo', | 356 'mojom_base_output_dir': 'mojo', |
374 }, | 357 }, |
375 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], | 358 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], |
376 'dependencies': [ | 359 'dependencies': [ |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
417 }, | 400 }, |
418 'dependencies': [ | 401 'dependencies': [ |
419 'mojo_public_java', | 402 'mojo_public_java', |
420 ], | 403 ], |
421 'includes': [ '../build/java.gypi' ], | 404 'includes': [ '../build/java.gypi' ], |
422 }, | 405 }, |
423 ], | 406 ], |
424 }], | 407 }], |
425 ], | 408 ], |
426 } | 409 } |
OLD | NEW |