| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'target_defaults': { | 6 'target_defaults': { |
| 7 'conditions': [ | 7 'conditions': [ |
| 8 ['mojo_shell_debug_url != ""', { | 8 ['mojo_shell_debug_url != ""', { |
| 9 'defines': [ | 9 'defines': [ |
| 10 'MOJO_SHELL_DEBUG=1', | 10 'MOJO_SHELL_DEBUG=1', |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 'mojo_public_utility_unittests', | 49 'mojo_public_utility_unittests', |
| 50 'mojo_sample_app', | 50 'mojo_sample_app', |
| 51 'mojo_service_manager', | 51 'mojo_service_manager', |
| 52 'mojo_service_manager_unittests', | 52 'mojo_service_manager_unittests', |
| 53 'mojo_shell', | 53 'mojo_shell', |
| 54 'mojo_shell_lib', | 54 'mojo_shell_lib', |
| 55 'mojo_shell_tests', | 55 'mojo_shell_tests', |
| 56 'mojo_system', | 56 'mojo_system', |
| 57 'mojo_system_impl', | 57 'mojo_system_impl', |
| 58 'mojo_system_unittests', | 58 'mojo_system_unittests', |
| 59 'mojo_test_service', |
| 59 'mojo_utility', | 60 'mojo_utility', |
| 60 'mojo_view_manager_lib', | 61 'mojo_view_manager_lib', |
| 61 'mojo_view_manager_lib_unittests', | 62 'mojo_view_manager_lib_unittests', |
| 62 'mojo_wget', | 63 'mojo_wget', |
| 63 ], | 64 ], |
| 64 'conditions': [ | 65 'conditions': [ |
| 65 ['use_aura==1', { | 66 ['use_aura==1', { |
| 66 'dependencies': [ | 67 'dependencies': [ |
| 67 'mojo_aura_demo', | 68 'mojo_aura_demo', |
| 68 'mojo_aura_demo_init', | 69 'mojo_aura_demo_init', |
| (...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 587 '../base/base.gyp:test_support_base', | 588 '../base/base.gyp:test_support_base', |
| 588 '../testing/gtest.gyp:gtest', | 589 '../testing/gtest.gyp:gtest', |
| 589 # TODO(vtl): We don't currently need this, but I imagine we will soon. | 590 # TODO(vtl): We don't currently need this, but I imagine we will soon. |
| 590 # '../ui/gl/gl.gyp:gl', | 591 # '../ui/gl/gl.gyp:gl', |
| 591 '../url/url.gyp:url_lib', | 592 '../url/url.gyp:url_lib', |
| 592 'mojo_common_lib', | 593 'mojo_common_lib', |
| 593 'mojo_environment_chromium', | 594 'mojo_environment_chromium', |
| 594 'mojo_service_manager', | 595 'mojo_service_manager', |
| 595 'mojo_shell_lib', | 596 'mojo_shell_lib', |
| 596 'mojo_system_impl', | 597 'mojo_system_impl', |
| 598 'mojo_test_service_bindings', |
| 597 ], | 599 ], |
| 598 'sources': [ | 600 'sources': [ |
| 599 'shell/child_process_host_unittest.cc', | 601 'shell/child_process_host_unittest.cc', |
| 600 'shell/shell_test_base.cc', | 602 'shell/shell_test_base.cc', |
| 601 'shell/shell_test_base.h', | 603 'shell/shell_test_base.h', |
| 604 'shell/shell_test_base_unittest.cc', |
| 602 'shell/shell_test_main.cc', | 605 'shell/shell_test_main.cc', |
| 603 ], | 606 ], |
| 604 }, | 607 }, |
| 605 { | 608 { |
| 606 'target_name': 'mojo_service_manager_unittests', | 609 'target_name': 'mojo_service_manager_unittests', |
| 607 'type': 'executable', | 610 'type': 'executable', |
| 608 'dependencies': [ | 611 'dependencies': [ |
| 609 '../base/base.gyp:base', | 612 '../base/base.gyp:base', |
| 610 '../testing/gtest.gyp:gtest', | 613 '../testing/gtest.gyp:gtest', |
| 611 '../url/url.gyp:url_lib', | 614 '../url/url.gyp:url_lib', |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 905 'aura/screen_mojo.cc', | 908 'aura/screen_mojo.cc', |
| 906 'aura/screen_mojo.h', | 909 'aura/screen_mojo.h', |
| 907 'aura/window_tree_host_mojo.cc', | 910 'aura/window_tree_host_mojo.cc', |
| 908 'aura/window_tree_host_mojo.h', | 911 'aura/window_tree_host_mojo.h', |
| 909 ], | 912 ], |
| 910 }, | 913 }, |
| 911 ], | 914 ], |
| 912 }], | 915 }], |
| 913 ], | 916 ], |
| 914 } | 917 } |
| OLD | NEW |