OLD | NEW |
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 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
342 }], | 342 }], |
343 ], | 343 ], |
344 'include_dirs': [ | 344 'include_dirs': [ |
345 '..', | 345 '..', |
346 ], | 346 ], |
347 }, | 347 }, |
348 { | 348 { |
349 'target_name': 'mojo_shell_bindings', | 349 'target_name': 'mojo_shell_bindings', |
350 'type': 'static_library', | 350 'type': 'static_library', |
351 'sources': [ | 351 'sources': [ |
352 'public/shell/lib/application.cc', | |
353 'public/shell/lib/service.cc', | |
354 'public/shell/application.h', | |
355 'public/shell/service.h', | |
356 'public/shell/shell.mojom', | 352 'public/shell/shell.mojom', |
357 ], | 353 ], |
358 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], | 354 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], |
359 'dependencies': [ | 355 'dependencies': [ |
360 'mojo_bindings', | 356 'mojo_bindings', |
361 'mojo_system', | 357 'mojo_system', |
362 ], | 358 ], |
363 'export_dependent_settings': [ | 359 'export_dependent_settings': [ |
364 'mojo_bindings', | 360 'mojo_bindings', |
365 'mojo_system', | 361 ], |
| 362 }, |
| 363 { |
| 364 'target_name': 'mojo_shell_client', |
| 365 'type': 'static_library', |
| 366 'sources': [ |
| 367 'public/shell/lib/application.cc', |
| 368 'public/shell/lib/service.cc', |
| 369 'public/shell/application.h', |
| 370 'public/shell/service.h', |
| 371 ], |
| 372 'dependencies': [ |
| 373 'mojo_shell_bindings', |
| 374 ], |
| 375 'export_dependent_settings': [ |
| 376 'mojo_shell_bindings', |
366 ], | 377 ], |
367 }, | 378 }, |
368 ], | 379 ], |
369 } | 380 } |
OLD | NEW |