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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 'proxy/ppp_instance_proxy_unittest.cc', | 159 'proxy/ppp_instance_proxy_unittest.cc', |
160 'proxy/ppp_messaging_proxy_unittest.cc', | 160 'proxy/ppp_messaging_proxy_unittest.cc', |
161 'proxy/printing_resource_unittest.cc', | 161 'proxy/printing_resource_unittest.cc', |
162 'proxy/serialized_var_unittest.cc', | 162 'proxy/serialized_var_unittest.cc', |
163 'proxy/websocket_resource_unittest.cc', | 163 'proxy/websocket_resource_unittest.cc', |
164 'shared_impl/resource_tracker_unittest.cc', | 164 'shared_impl/resource_tracker_unittest.cc', |
165 'shared_impl/thread_aware_callback_unittest.cc', | 165 'shared_impl/thread_aware_callback_unittest.cc', |
166 'shared_impl/time_conversion_unittest.cc', | 166 'shared_impl/time_conversion_unittest.cc', |
167 'shared_impl/tracked_callback_unittest.cc', | 167 'shared_impl/tracked_callback_unittest.cc', |
168 'shared_impl/var_tracker_unittest.cc', | 168 'shared_impl/var_tracker_unittest.cc', |
| 169 'shared_impl/var_value_conversions_unittest.cc', |
169 ], | 170 ], |
170 'conditions': [ | 171 'conditions': [ |
171 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { | 172 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { |
172 'conditions': [ | 173 'conditions': [ |
173 [ 'linux_use_tcmalloc == 1', { | 174 [ 'linux_use_tcmalloc == 1', { |
174 'dependencies': [ | 175 'dependencies': [ |
175 '../base/allocator/allocator.gyp:allocator', | 176 '../base/allocator/allocator.gyp:allocator', |
176 ], | 177 ], |
177 }], | 178 }], |
178 ], | 179 ], |
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
464 'ppapi.gyp:ppapi_cpp', | 465 'ppapi.gyp:ppapi_cpp', |
465 ], | 466 ], |
466 'sources': [ | 467 'sources': [ |
467 'examples/printing/printing.cc', | 468 'examples/printing/printing.cc', |
468 ], | 469 ], |
469 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 470 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
470 'msvs_disabled_warnings': [ 4267, ], | 471 'msvs_disabled_warnings': [ 4267, ], |
471 }, | 472 }, |
472 ], | 473 ], |
473 } | 474 } |
OLD | NEW |