| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 'target_name': 'shell_interfaces', | 7 'target_name': 'shell_interfaces', |
| 8 'type': 'none', | 8 'type': 'none', |
| 9 'variables': { | 9 'variables': { |
| 10 'mojom_files': [ | 10 'mojom_files': [ |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 ], | 104 ], |
| 105 }, { | 105 }, { |
| 106 'target_name': 'mojo_shell_unittests', | 106 'target_name': 'mojo_shell_unittests', |
| 107 'type': 'executable', | 107 'type': 'executable', |
| 108 'sources': [ | 108 'sources': [ |
| 109 'tests/loader_unittest.cc', | 109 'tests/loader_unittest.cc', |
| 110 ], | 110 ], |
| 111 'dependencies': [ | 111 'dependencies': [ |
| 112 'shell_lib', | 112 'shell_lib', |
| 113 'shell_public', | 113 'shell_public', |
| 114 'shell_test_interfaces', | 114 'shell_test_public', |
| 115 '<(DEPTH)/base/base.gyp:base', | 115 '<(DEPTH)/base/base.gyp:base', |
| 116 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib', | 116 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib', |
| 117 '<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters', | 117 '<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters', |
| 118 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_run_all_unittests', | 118 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_run_all_unittests', |
| 119 '<(DEPTH)/mojo/mojo_public.gyp:mojo_cpp_bindings', | 119 '<(DEPTH)/mojo/mojo_public.gyp:mojo_cpp_bindings', |
| 120 '<(DEPTH)/testing/gtest.gyp:gtest', | 120 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 121 '<(DEPTH)/url/url.gyp:url_lib', | 121 '<(DEPTH)/url/url.gyp:url_lib', |
| 122 ] | 122 ] |
| 123 }, { | 123 }, { |
| 124 'target_name': 'shell_test_public', |
| 125 'type': 'static_library', |
| 126 'dependencies': [ |
| 127 'shell_test_interfaces', |
| 128 ], |
| 129 }, { |
| 124 'target_name': 'shell_test_interfaces', | 130 'target_name': 'shell_test_interfaces', |
| 125 'type': 'static_library', | 131 'type': 'none', |
| 126 'variables': { | 132 'variables': { |
| 127 'mojom_files': [ | 133 'mojom_files': [ |
| 128 'tests/test.mojom', | 134 'tests/test.mojom', |
| 129 ], | 135 ], |
| 130 }, | 136 }, |
| 131 'includes': [ | 137 'includes': [ |
| 132 '../../mojo/mojom_bindings_generator_explicit.gypi', | 138 '../../mojo/mojom_bindings_generator_explicit.gypi', |
| 133 ], | 139 ], |
| 134 }, { | 140 }, { |
| 135 'target_name': 'shell_runner_common_lib', | 141 'target_name': 'shell_runner_common_lib', |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 'shell_public', | 233 'shell_public', |
| 228 '<(DEPTH)/base/base.gyp:base', | 234 '<(DEPTH)/base/base.gyp:base', |
| 229 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_run_all_unittests', | 235 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_run_all_unittests', |
| 230 '<(DEPTH)/testing/gtest.gyp:gtest', | 236 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 231 ], | 237 ], |
| 232 'sources': [ | 238 'sources': [ |
| 233 'public/cpp/tests/interface_registry_unittest.cc', | 239 'public/cpp/tests/interface_registry_unittest.cc', |
| 234 ], | 240 ], |
| 235 }], | 241 }], |
| 236 } | 242 } |
| OLD | NEW |