OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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': 'ppapi_tests', | 8 'target_name': 'ppapi_tests', |
9 'type': 'loadable_module', | 9 'type': 'loadable_module', |
10 'include_dirs': [ | 10 'include_dirs': [ |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 'ppapi_unittest_shared', | 145 'ppapi_unittest_shared', |
146 '../base/base.gyp:test_support_base', | 146 '../base/base.gyp:test_support_base', |
147 '../gpu/gpu.gyp:gpu_ipc', | 147 '../gpu/gpu.gyp:gpu_ipc', |
148 '../ipc/ipc.gyp:ipc', | 148 '../ipc/ipc.gyp:ipc', |
149 '../ipc/ipc.gyp:test_support_ipc', | 149 '../ipc/ipc.gyp:test_support_ipc', |
150 '../media/media.gyp:shared_memory_support', | 150 '../media/media.gyp:shared_memory_support', |
151 '../testing/gmock.gyp:gmock', | 151 '../testing/gmock.gyp:gmock', |
152 '../testing/gtest.gyp:gtest', | 152 '../testing/gtest.gyp:gtest', |
153 '../ui/surface/surface.gyp:surface', | 153 '../ui/surface/surface.gyp:surface', |
154 ], | 154 ], |
| 155 # For the nacl_http_response_headers_unittest below. |
| 156 'include_dirs': [ |
| 157 '../ppapi', |
| 158 ], |
155 'sources': [ | 159 'sources': [ |
156 'proxy/run_all_unittests.cc', | 160 'proxy/run_all_unittests.cc', |
157 | 161 |
158 'host/resource_message_filter_unittest.cc', | 162 'host/resource_message_filter_unittest.cc', |
| 163 # Piggy back on ppapi_unittests for a simple NaCl unittest, |
| 164 # which must not have dependencies on anything other than stdlibs. |
| 165 'native_client/src/trusted/plugin/nacl_http_response_headers.cc', |
| 166 'native_client/src/trusted/plugin/nacl_http_response_headers_unittest.cc
', |
159 'proxy/device_enumeration_resource_helper_unittest.cc', | 167 'proxy/device_enumeration_resource_helper_unittest.cc', |
160 'proxy/file_chooser_resource_unittest.cc', | 168 'proxy/file_chooser_resource_unittest.cc', |
161 'proxy/flash_resource_unittest.cc', | 169 'proxy/flash_resource_unittest.cc', |
162 'proxy/mock_resource.cc', | 170 'proxy/mock_resource.cc', |
163 'proxy/mock_resource.h', | 171 'proxy/mock_resource.h', |
164 'proxy/pdf_resource_unittest.cc', | 172 'proxy/pdf_resource_unittest.cc', |
165 'proxy/plugin_dispatcher_unittest.cc', | 173 'proxy/plugin_dispatcher_unittest.cc', |
166 'proxy/plugin_resource_tracker_unittest.cc', | 174 'proxy/plugin_resource_tracker_unittest.cc', |
167 'proxy/plugin_var_tracker_unittest.cc', | 175 'proxy/plugin_var_tracker_unittest.cc', |
168 'proxy/ppb_var_unittest.cc', | 176 'proxy/ppb_var_unittest.cc', |
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
507 'ppapi.gyp:ppapi_cpp', | 515 'ppapi.gyp:ppapi_cpp', |
508 ], | 516 ], |
509 'sources': [ | 517 'sources': [ |
510 'examples/printing/printing.cc', | 518 'examples/printing/printing.cc', |
511 ], | 519 ], |
512 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 520 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
513 'msvs_disabled_warnings': [ 4267, ], | 521 'msvs_disabled_warnings': [ 4267, ], |
514 }, | 522 }, |
515 ], | 523 ], |
516 } | 524 } |
OLD | NEW |