| 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 # We add the source file, not just the test to ensure that the object | 164 # We add the source file, not just the test to ensure that the object |
| 165 # is built. Otherwise, we would need to depend on the NaCl trusted | 165 # is built. Otherwise, we would need to depend on the NaCl trusted |
| 166 # plugin being built to build the object. | 166 # plugin being built to build the object. |
| 167 # TODO(jvoung): move this to unit_tests instead of ppapi_unittests | 167 # TODO(jvoung): move this to unit_tests instead of ppapi_unittests |
| 168 # once this moves into chrome. | 168 # once this moves into chrome. |
| 169 'native_client/src/trusted/plugin/nacl_http_response_headers.cc', | 169 'native_client/src/trusted/plugin/nacl_http_response_headers.cc', |
| 170 'native_client/src/trusted/plugin/nacl_http_response_headers_unittest.cc
', | 170 'native_client/src/trusted/plugin/nacl_http_response_headers_unittest.cc
', |
| 171 'proxy/device_enumeration_resource_helper_unittest.cc', | 171 'proxy/device_enumeration_resource_helper_unittest.cc', |
| 172 'proxy/file_chooser_resource_unittest.cc', | 172 'proxy/file_chooser_resource_unittest.cc', |
| 173 'proxy/flash_resource_unittest.cc', | 173 'proxy/flash_resource_unittest.cc', |
| 174 'proxy/interface_list_unittest.cc', |
| 174 'proxy/mock_resource.cc', | 175 'proxy/mock_resource.cc', |
| 175 'proxy/mock_resource.h', | 176 'proxy/mock_resource.h', |
| 176 'proxy/pdf_resource_unittest.cc', | 177 'proxy/pdf_resource_unittest.cc', |
| 177 'proxy/plugin_dispatcher_unittest.cc', | 178 'proxy/plugin_dispatcher_unittest.cc', |
| 178 'proxy/plugin_resource_tracker_unittest.cc', | 179 'proxy/plugin_resource_tracker_unittest.cc', |
| 179 'proxy/plugin_var_tracker_unittest.cc', | 180 'proxy/plugin_var_tracker_unittest.cc', |
| 180 'proxy/ppb_var_unittest.cc', | 181 'proxy/ppb_var_unittest.cc', |
| 181 'proxy/ppp_instance_private_proxy_unittest.cc', | 182 'proxy/ppp_instance_private_proxy_unittest.cc', |
| 182 'proxy/ppp_instance_proxy_unittest.cc', | 183 'proxy/ppp_instance_proxy_unittest.cc', |
| 183 'proxy/ppp_messaging_proxy_unittest.cc', | 184 'proxy/ppp_messaging_proxy_unittest.cc', |
| (...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 515 'ppapi.gyp:ppapi_cpp', | 516 'ppapi.gyp:ppapi_cpp', |
| 516 ], | 517 ], |
| 517 'sources': [ | 518 'sources': [ |
| 518 'examples/printing/printing.cc', | 519 'examples/printing/printing.cc', |
| 519 ], | 520 ], |
| 520 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 521 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 521 'msvs_disabled_warnings': [ 4267, ], | 522 'msvs_disabled_warnings': [ 4267, ], |
| 522 }, | 523 }, |
| 523 ], | 524 ], |
| 524 } | 525 } |
| OLD | NEW |