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