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 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
350 }], | 350 }], |
351 ], | 351 ], |
352 'include_dirs': [ | 352 'include_dirs': [ |
353 '..', | 353 '..', |
354 ], | 354 ], |
355 }, | 355 }, |
356 { | 356 { |
357 'target_name': 'mojo_shell_bindings', | 357 'target_name': 'mojo_shell_bindings', |
358 'type': 'static_library', | 358 'type': 'static_library', |
359 'sources': [ | 359 'sources': [ |
360 'public/shell/lib/application.cc', | |
361 'public/shell/lib/service.cc', | |
362 'public/shell/application.h', | |
363 'public/shell/service.h', | |
364 'public/shell/shell.mojom', | 360 'public/shell/shell.mojom', |
365 ], | 361 ], |
366 'variables': { | 362 'variables': { |
367 'mojom_base_output_dir': 'mojo', | 363 'mojom_base_output_dir': 'mojo', |
368 }, | 364 }, |
369 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], | 365 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], |
370 'dependencies': [ | 366 'dependencies': [ |
371 'mojo_bindings', | 367 'mojo_bindings', |
372 'mojo_system', | 368 'mojo_system', |
373 ], | 369 ], |
374 'export_dependent_settings': [ | 370 'export_dependent_settings': [ |
375 'mojo_bindings', | 371 'mojo_bindings', |
376 'mojo_system', | 372 ], |
| 373 }, |
| 374 { |
| 375 'target_name': 'mojo_shell_client', |
| 376 'type': 'static_library', |
| 377 'sources': [ |
| 378 'public/shell/lib/application.cc', |
| 379 'public/shell/lib/service.cc', |
| 380 'public/shell/application.h', |
| 381 'public/shell/service.h', |
| 382 ], |
| 383 'dependencies': [ |
| 384 'mojo_shell_bindings', |
| 385 ], |
| 386 'export_dependent_settings': [ |
| 387 'mojo_shell_bindings', |
377 ], | 388 ], |
378 }, | 389 }, |
379 ], | 390 ], |
380 } | 391 } |
OLD | NEW |