OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 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_test_support', | 8 'target_name': 'mojo_test_support', |
9 'type': 'shared_library', | 9 'type': 'shared_library', |
10 'defines': [ | 10 'defines': [ |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 'target_name': 'mojo_public_system_unittests', | 114 'target_name': 'mojo_public_system_unittests', |
115 'type': 'executable', | 115 'type': 'executable', |
116 'dependencies': [ | 116 'dependencies': [ |
117 '../base/base.gyp:base', | 117 '../base/base.gyp:base', |
118 '../testing/gtest.gyp:gtest', | 118 '../testing/gtest.gyp:gtest', |
119 'mojo_cpp_bindings', | 119 'mojo_cpp_bindings', |
120 'mojo_public_test_utils', | 120 'mojo_public_test_utils', |
121 'mojo_run_all_unittests', | 121 'mojo_run_all_unittests', |
122 ], | 122 ], |
123 'sources': [ | 123 'sources': [ |
124 'public/c/system/tests/core_unittest.cc', | 124 '<@(mojo_public_system_unittest_sources)', |
125 'public/c/system/tests/core_unittest_pure_c.c', | |
126 'public/c/system/tests/macros_unittest.cc', | |
127 'public/cpp/system/tests/core_unittest.cc', | |
128 'public/cpp/system/tests/macros_unittest.cc', | |
129 ], | 125 ], |
130 }, | 126 }, |
131 { | 127 { |
132 'target_name': 'mojo_public_utility_unittests', | 128 'target_name': 'mojo_public_utility_unittests', |
133 'type': 'executable', | 129 'type': 'executable', |
134 'dependencies': [ | 130 'dependencies': [ |
135 '../base/base.gyp:base', | 131 '../base/base.gyp:base', |
136 '../testing/gtest.gyp:gtest', | 132 '../testing/gtest.gyp:gtest', |
137 'mojo_cpp_bindings', | 133 'mojo_cpp_bindings', |
138 'mojo_public_test_utils', | 134 'mojo_public_test_utils', |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], | 180 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], |
185 'export_dependent_settings': [ | 181 'export_dependent_settings': [ |
186 'mojo_cpp_bindings', | 182 'mojo_cpp_bindings', |
187 ], | 183 ], |
188 'dependencies': [ | 184 'dependencies': [ |
189 'mojo_cpp_bindings', | 185 'mojo_cpp_bindings', |
190 ], | 186 ], |
191 }, | 187 }, |
192 ], | 188 ], |
193 } | 189 } |
OLD | NEW |