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