Chromium Code Reviews| 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', | |
|
dmichael (off chromium)
2013/06/14 16:21:43
I'm not a big fan of putting the source directly i
jvoung (off chromium)
2013/06/14 20:38:03
Done. I wasn't sure how to trigger the build of t
dmichael (off chromium)
2013/06/14 21:09:03
Yeah, I understand why you did it. But it's weird
| |
| 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 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 508 'ppapi.gyp:ppapi_cpp', | 516 'ppapi.gyp:ppapi_cpp', |
| 509 ], | 517 ], |
| 510 'sources': [ | 518 'sources': [ |
| 511 'examples/printing/printing.cc', | 519 'examples/printing/printing.cc', |
| 512 ], | 520 ], |
| 513 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 521 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 514 'msvs_disabled_warnings': [ 4267, ], | 522 'msvs_disabled_warnings': [ 4267, ], |
| 515 }, | 523 }, |
| 516 ], | 524 ], |
| 517 } | 525 } |
| OLD | NEW |