| 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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 'proxy/plugin_var_tracker_unittest.cc', | 180 'proxy/plugin_var_tracker_unittest.cc', |
| 181 'proxy/ppb_var_unittest.cc', | 181 'proxy/ppb_var_unittest.cc', |
| 182 'proxy/ppp_instance_private_proxy_unittest.cc', | 182 'proxy/ppp_instance_private_proxy_unittest.cc', |
| 183 'proxy/ppp_instance_proxy_unittest.cc', | 183 'proxy/ppp_instance_proxy_unittest.cc', |
| 184 'proxy/ppp_messaging_proxy_unittest.cc', | 184 'proxy/ppp_messaging_proxy_unittest.cc', |
| 185 'proxy/printing_resource_unittest.cc', | 185 'proxy/printing_resource_unittest.cc', |
| 186 'proxy/raw_var_data_unittest.cc', | 186 'proxy/raw_var_data_unittest.cc', |
| 187 'proxy/serialized_var_unittest.cc', | 187 'proxy/serialized_var_unittest.cc', |
| 188 'proxy/talk_resource_unittest.cc', | 188 'proxy/talk_resource_unittest.cc', |
| 189 'proxy/websocket_resource_unittest.cc', | 189 'proxy/websocket_resource_unittest.cc', |
| 190 'shared_impl/circular_buffer_unittest.cc', |
| 190 'shared_impl/proxy_lock_unittest.cc', | 191 'shared_impl/proxy_lock_unittest.cc', |
| 191 'shared_impl/resource_tracker_unittest.cc', | 192 'shared_impl/resource_tracker_unittest.cc', |
| 192 'shared_impl/thread_aware_callback_unittest.cc', | 193 'shared_impl/thread_aware_callback_unittest.cc', |
| 193 'shared_impl/time_conversion_unittest.cc', | 194 'shared_impl/time_conversion_unittest.cc', |
| 194 'shared_impl/tracked_callback_unittest.cc', | 195 'shared_impl/tracked_callback_unittest.cc', |
| 195 'shared_impl/var_tracker_unittest.cc', | 196 'shared_impl/var_tracker_unittest.cc', |
| 196 'shared_impl/var_value_conversions_unittest.cc', | 197 'shared_impl/var_value_conversions_unittest.cc', |
| 197 ], | 198 ], |
| 198 'conditions': [ | 199 'conditions': [ |
| 199 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { | 200 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { |
| (...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 516 'ppapi.gyp:ppapi_cpp', | 517 'ppapi.gyp:ppapi_cpp', |
| 517 ], | 518 ], |
| 518 'sources': [ | 519 'sources': [ |
| 519 'examples/printing/printing.cc', | 520 'examples/printing/printing.cc', |
| 520 ], | 521 ], |
| 521 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 522 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 522 'msvs_disabled_warnings': [ 4267, ], | 523 'msvs_disabled_warnings': [ 4267, ], |
| 523 }, | 524 }, |
| 524 ], | 525 ], |
| 525 } | 526 } |
| OLD | NEW |