| OLD | NEW |
| 1 # Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'mojo_echo_bindings', | 8 'target_name': 'mojo_echo_bindings', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'sources': [ | 10 'sources': [ |
| (...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 441 ], | 441 ], |
| 442 'dependencies': [ | 442 'dependencies': [ |
| 443 'mojo_cpp_bindings', | 443 'mojo_cpp_bindings', |
| 444 'mojo_geometry_bindings', | 444 'mojo_geometry_bindings', |
| 445 ], | 445 ], |
| 446 }, | 446 }, |
| 447 { | 447 { |
| 448 'target_name': 'mojo_test_service_bindings', | 448 'target_name': 'mojo_test_service_bindings', |
| 449 'type': 'static_library', | 449 'type': 'static_library', |
| 450 'sources': [ | 450 'sources': [ |
| 451 # TODO(tim): Move to services/public/interfaces? |
| 451 'services/test_service/test_service.mojom', | 452 'services/test_service/test_service.mojom', |
| 453 'services/test_service/test_request_tracker.mojom', |
| 452 ], | 454 ], |
| 453 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], | 455 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], |
| 454 'export_dependent_settings': [ | 456 'export_dependent_settings': [ |
| 455 'mojo_cpp_bindings', | 457 'mojo_cpp_bindings', |
| 456 ], | 458 ], |
| 457 'dependencies': [ | 459 'dependencies': [ |
| 458 'mojo_cpp_bindings', | 460 'mojo_cpp_bindings', |
| 459 ], | 461 ], |
| 460 }, | 462 }, |
| 461 { | 463 { |
| 462 'target_name': 'mojo_test_service', | 464 'target_name': 'mojo_test_app', |
| 463 'type': 'loadable_module', | 465 'type': 'loadable_module', |
| 464 'dependencies': [ | 466 'dependencies': [ |
| 465 '../base/base.gyp:base', | 467 '../base/base.gyp:base', |
| 466 'mojo_application', | 468 'mojo_application', |
| 467 'mojo_environment_standalone', | 469 'mojo_environment_standalone', |
| 468 'mojo_test_service_bindings', | 470 'mojo_test_service_bindings', |
| 469 'mojo_system', | 471 'mojo_system', |
| 470 'mojo_utility', | 472 'mojo_utility', |
| 471 ], | 473 ], |
| 472 'sources': [ | 474 'sources': [ |
| 473 'public/cpp/application/lib/mojo_main_standalone.cc', | 475 'public/cpp/application/lib/mojo_main_standalone.cc', |
| 476 'services/test_service/test_request_tracker_client_impl.cc', |
| 477 'services/test_service/test_request_tracker_client_impl.h', |
| 474 'services/test_service/test_service_application.cc', | 478 'services/test_service/test_service_application.cc', |
| 475 'services/test_service/test_service_application.h', | 479 'services/test_service/test_service_application.h', |
| 476 'services/test_service/test_service_impl.cc', | 480 'services/test_service/test_service_impl.cc', |
| 477 'services/test_service/test_service_impl.h', | 481 'services/test_service/test_service_impl.h', |
| 482 'services/test_service/test_time_service_impl.cc', |
| 483 'services/test_service/test_time_service_impl.h', |
| 478 ], | 484 ], |
| 479 }, | 485 }, |
| 480 { | 486 { |
| 487 'target_name': 'mojo_test_request_tracker_app', |
| 488 'type': 'loadable_module', |
| 489 'dependencies': [ |
| 490 '../base/base.gyp:base', |
| 491 'mojo_application', |
| 492 'mojo_environment_standalone', |
| 493 'mojo_test_service_bindings', |
| 494 'mojo_system', |
| 495 'mojo_utility', |
| 496 ], |
| 497 'sources': [ |
| 498 'public/cpp/application/lib/mojo_main_standalone.cc', |
| 499 'services/test_service/test_request_tracker_client_impl.cc', |
| 500 'services/test_service/test_request_tracker_client_impl.h', |
| 501 'services/test_service/test_request_tracker_application.cc', |
| 502 'services/test_service/test_request_tracker_application.h', |
| 503 'services/test_service/test_time_service_impl.cc', |
| 504 'services/test_service/test_time_service_impl.h', |
| 505 'services/test_service/test_request_tracker_impl.cc', |
| 506 'services/test_service/test_request_tracker_impl.h', |
| 507 ], |
| 508 }, |
| 509 { |
| 481 'target_name': 'mojo_profile_service_bindings', | 510 'target_name': 'mojo_profile_service_bindings', |
| 482 'type': 'static_library', | 511 'type': 'static_library', |
| 483 'sources': [ | 512 'sources': [ |
| 484 'services/public/interfaces/profile/profile_service.mojom', | 513 'services/public/interfaces/profile/profile_service.mojom', |
| 485 ], | 514 ], |
| 486 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], | 515 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], |
| 487 'export_dependent_settings': [ | 516 'export_dependent_settings': [ |
| 488 'mojo_cpp_bindings', | 517 'mojo_cpp_bindings', |
| 489 ], | 518 ], |
| 490 'dependencies': [ | 519 'dependencies': [ |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 650 'mojo_system_impl', | 679 'mojo_system_impl', |
| 651 ], | 680 ], |
| 652 'sources': [ | 681 'sources': [ |
| 653 'services/dbus_echo/dbus_echo_service.cc', | 682 'services/dbus_echo/dbus_echo_service.cc', |
| 654 ], | 683 ], |
| 655 }, | 684 }, |
| 656 ], | 685 ], |
| 657 }], | 686 }], |
| 658 ], | 687 ], |
| 659 } | 688 } |
| OLD | NEW |