OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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_example', | 8 'target_name': 'ppapi_example', |
9 'dependencies': [ | 9 'dependencies': [ |
10 'ppapi.gyp:ppapi_cpp' | 10 'ppapi.gyp:ppapi_cpp' |
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 # 'outputs': [ | 181 # 'outputs': [ |
182 # 'tests/test_c_includes.c', | 182 # 'tests/test_c_includes.c', |
183 # 'tests/test_cc_includes.cc', | 183 # 'tests/test_cc_includes.cc', |
184 # ], | 184 # ], |
185 # 'action': [ | 185 # 'action': [ |
186 # '<!@(python generate_ppapi_include_tests.py)', | 186 # '<!@(python generate_ppapi_include_tests.py)', |
187 # ], | 187 # ], |
188 # }, | 188 # }, |
189 # ], | 189 # ], |
190 }, | 190 }, |
| 191 { |
| 192 'target_name': 'ppapi_nacl_tests', |
| 193 'type': 'none', |
| 194 'dependencies': [ |
| 195 'native_client/native_client.gyp:nacl_irt', |
| 196 ], |
| 197 'variables': { |
| 198 'nexe_target': 'ppapi_nacl_tests', |
| 199 'build_glibc': 0, |
| 200 'build_newlib': 1, |
| 201 'include_dirs': [ |
| 202 'lib/gl/include', |
| 203 '..', |
| 204 ], |
| 205 'sources': [ |
| 206 # Common test files |
| 207 'tests/test_case.cc', |
| 208 'tests/test_utils.cc', |
| 209 'tests/testing_instance.cc', |
| 210 |
| 211 # Compile-time tests |
| 212 'tests/test_c_includes.c', |
| 213 'tests/test_cpp_includes.cc', |
| 214 'tests/test_struct_sizes.c', |
| 215 |
| 216 # Test cases (PLEASE KEEP THIS SECTION IN ALPHABETICAL ORDER) |
| 217 # Add/uncomment PPAPI interfaces below when they get proxied. |
| 218 # Not yet proxied. |
| 219 #'test_broker.cc', |
| 220 # Not yet proxied. |
| 221 #'test_buffer.cc', |
| 222 # Not yet proxied. |
| 223 #'test_char_set.cc', |
| 224 'tests/test_cursor_control.cc', |
| 225 # Fails in DeleteDirectoryRecursively. |
| 226 # BUG: http://code.google.com/p/nativeclient/issues/detail?id=2107 |
| 227 #'test_directory_reader.cc', |
| 228 'tests/test_file_io.cc', |
| 229 'tests/test_file_ref.cc', |
| 230 'tests/test_file_system.cc', |
| 231 'tests/test_memory.cc', |
| 232 'tests/test_graphics_2d.cc', |
| 233 'tests/test_image_data.cc', |
| 234 'tests/test_paint_aggregator.cc', |
| 235 # test_post_message.cc relies on synchronous scripting, which is not |
| 236 # available for untrusted tests. |
| 237 # Does not compile under nacl (uses private interface ExecuteScript). |
| 238 #'test_post_message.cc', |
| 239 'tests/test_scrollbar.cc', |
| 240 # Not yet proxied. |
| 241 #'tests/test_transport.cc', |
| 242 # Not yet proxied. |
| 243 #'tests/test_uma.cc', |
| 244 # Activating the URL loader test requires a test httpd that |
| 245 # understands HTTP POST, which our current httpd.py doesn't. |
| 246 # It also requires deactivating the tests that use FileIOTrusted |
| 247 # when running in NaCl. |
| 248 #'tests/test_url_loader.cc', |
| 249 # Does not compile under nacl (uses VarPrivate). |
| 250 #'test_url_util.cc', |
| 251 # Not yet proxied. |
| 252 #'test_video_decoder.cc', |
| 253 'tests/test_var.cc', |
| 254 |
| 255 # Deprecated test cases. |
| 256 #'tests/test_instance_deprecated.cc', |
| 257 # Var_deprecated fails in TestPassReference, and we probably won't |
| 258 # fix it. |
| 259 #'tests/test_var_deprecated.cc' |
| 260 ], |
| 261 }, |
| 262 }, |
191 { | 263 { |
192 'target_name': 'ppapi_unittests', | 264 'target_name': 'ppapi_unittests', |
193 'type': 'executable', | 265 'type': 'executable', |
194 'variables': { | 266 'variables': { |
195 'chromium_code': 1, | 267 'chromium_code': 1, |
196 }, | 268 }, |
197 'dependencies': [ | 269 'dependencies': [ |
198 'ppapi_proxy', | 270 'ppapi_proxy', |
199 'ppapi_shared', | 271 'ppapi_shared', |
200 '../base/base.gyp:test_support_base', | 272 '../base/base.gyp:test_support_base', |
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
403 'lib/gl/include', | 475 'lib/gl/include', |
404 ], | 476 ], |
405 'sources': [ | 477 'sources': [ |
406 'examples/video_capture/video_capture.cc', | 478 'examples/video_capture/video_capture.cc', |
407 ], | 479 ], |
408 }, | 480 }, |
409 ], | 481 ], |
410 }] | 482 }] |
411 ] | 483 ] |
412 } | 484 } |
OLD | NEW |