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 672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
683 'mojo_environment_chromium', | 683 'mojo_environment_chromium', |
684 'mojo_service_manager', | 684 'mojo_service_manager', |
685 'mojo_shell_lib', | 685 'mojo_shell_lib', |
686 'mojo_system_impl', | 686 'mojo_system_impl', |
687 'mojo_test_app', | 687 'mojo_test_app', |
688 'mojo_test_request_tracker_app', | 688 'mojo_test_request_tracker_app', |
689 'mojo_test_service_bindings', | 689 'mojo_test_service_bindings', |
690 ], | 690 ], |
691 'sources': [ | 691 'sources': [ |
692 'shell/child_process_host_unittest.cc', | 692 'shell/child_process_host_unittest.cc', |
| 693 'shell/dynamic_service_loader_unittest.cc', |
| 694 'shell/in_process_dynamic_service_runner_unittest.cc', |
693 'shell/shell_test_base.cc', | 695 'shell/shell_test_base.cc', |
694 'shell/shell_test_base.h', | 696 'shell/shell_test_base.h', |
695 'shell/shell_test_base_unittest.cc', | 697 'shell/shell_test_base_unittest.cc', |
696 'shell/shell_test_main.cc', | 698 'shell/shell_test_main.cc', |
697 ], | 699 ], |
698 'conditions': [ | 700 'conditions': [ |
699 ['OS == "android"', { | 701 ['OS == "android"', { |
700 'dependencies': [ | 702 'dependencies': [ |
701 '../testing/android/native_test.gyp:native_test_native_code', | 703 '../testing/android/native_test.gyp:native_test_native_code', |
702 ], | 704 ], |
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1060 'views/views_init_internal.h', | 1062 'views/views_init_internal.h', |
1061 ], | 1063 ], |
1062 'defines': [ | 1064 'defines': [ |
1063 'MOJO_VIEWS_IMPLEMENTATION', | 1065 'MOJO_VIEWS_IMPLEMENTATION', |
1064 ], | 1066 ], |
1065 }, | 1067 }, |
1066 ], | 1068 ], |
1067 }], | 1069 }], |
1068 ], | 1070 ], |
1069 } | 1071 } |
OLD | NEW |