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 { |
350 'target_name': 'mojo_shell_bindings', | 367 'target_name': 'mojo_shell_bindings', |
351 'type': 'static_library', | 368 'type': 'static_library', |
352 'sources': [ | 369 'sources': [ |
353 'public/interfaces/shell/shell.mojom', | 370 'public/interfaces/shell/shell.mojom', |
354 ], | 371 ], |
355 'variables': { | 372 'variables': { |
356 'mojom_base_output_dir': 'mojo', | 373 'mojom_base_output_dir': 'mojo', |
357 }, | 374 }, |
358 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], | 375 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], |
359 'dependencies': [ | 376 'dependencies': [ |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
400 }, | 417 }, |
401 'dependencies': [ | 418 'dependencies': [ |
402 'mojo_public_java', | 419 'mojo_public_java', |
403 ], | 420 ], |
404 'includes': [ '../build/java.gypi' ], | 421 'includes': [ '../build/java.gypi' ], |
405 }, | 422 }, |
406 ], | 423 ], |
407 }], | 424 }], |
408 ], | 425 ], |
409 } | 426 } |
OLD | NEW |