Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(81)

Side by Side Diff: ppapi/ppapi_tests.gypi

Issue 8539019: Test NaCl version of ppapi_tests via ui_tests (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 394 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 'ppapi.gyp:ppapi_egl', 405 'ppapi.gyp:ppapi_egl',
406 ], 406 ],
407 'include_dirs': [ 407 'include_dirs': [
408 'lib/gl/include', 408 'lib/gl/include',
409 ], 409 ],
410 'sources': [ 410 'sources': [
411 'examples/video_capture/video_capture.cc', 411 'examples/video_capture/video_capture.cc',
412 ], 412 ],
413 }, 413 },
414 ], 414 ],
415 'conditions': [
416 ['disable_nacl!=1', {
417 'targets': [
418 {
419 'target_name': 'ppapi_nacl_tests',
420 'type': 'none',
421 'dependencies': [
422 'native_client/native_client.gyp:ppapi_lib',
423 'native_client/native_client.gyp:nacl_irt',
424 'ppapi.gyp:ppapi_cpp_lib',
425 ],
426 'variables': {
427 'nexe_target': 'ppapi_nacl_tests',
428 'build_glibc': 0,
429 'build_newlib': 1,
430 'include_dirs': [
431 'lib/gl/include',
432 '..',
433 ],
434 'link_flags': [
435 '-lppapi_cpp',
436 '-lppapi',
437 ],
438 'extra_deps64': [
439 '<(PRODUCT_DIR)/obj/gen/tc_newlib/lib64/libppapi_cpp.a',
440 '<(PRODUCT_DIR)/obj/gen/tc_newlib/lib64/libppapi.a',
441 ],
442 'extra_deps32': [
443 '<(PRODUCT_DIR)/obj/gen/tc_newlib/lib32/libppapi_cpp.a',
444 '<(PRODUCT_DIR)/obj/gen/tc_newlib/lib32/libppapi.a',
445 ],
446 'sources': [
447 # Common test files
448 'tests/test_case.cc',
449 'tests/test_utils.cc',
450 'tests/testing_instance.cc',
451
452 # Compile-time tests
453 'tests/test_c_includes.c',
454 'tests/test_cpp_includes.cc',
455 'tests/test_struct_sizes.c',
456 # Test cases (PLEASE KEEP THIS SECTION IN ALPHABETICAL ORDER)
457
458 # Add/uncomment PPAPI interfaces below when they get proxied.
459 # Not yet proxied.
460 #'test_broker.cc',
461 # Not yet proxied.
462 #'test_buffer.cc',
463 # Not yet proxied.
464 #'test_char_set.cc',
465 'tests/test_cursor_control.cc',
466 # Fails in DeleteDirectoryRecursively.
467 # BUG: http://code.google.com/p/nativeclient/issues/detail?id=2107
468 #'test_directory_reader.cc',
469 'tests/test_file_io.cc',
470 'tests/test_file_ref.cc',
471 'tests/test_file_system.cc',
472 'tests/test_memory.cc',
473 'tests/test_graphics_2d.cc',
474 'tests/test_image_data.cc',
475 'tests/test_paint_aggregator.cc',
476 # test_post_message.cc relies on synchronous scripting, which is n ot
477 # available for untrusted tests.
478 # Does not compile under nacl (uses private interface ExecuteScrip t).
479 #'test_post_message.cc',
480 'tests/test_scrollbar.cc',
481 # Not yet proxied.
482 #'tests/test_transport.cc',
483 # Not yet proxied.
484 #'tests/test_uma.cc',
485 # Activating the URL loader test requires a test httpd that
486 # understands HTTP POST, which our current httpd.py doesn't.
487 # It also requires deactivating the tests that use FileIOTrusted
488 # when running in NaCl.
489 #'tests/test_url_loader.cc',
490 # Does not compile under nacl (uses VarPrivate).
491 #'test_url_util.cc',
492 # Not yet proxied.
493 #'test_video_decoder.cc',
494 'tests/test_var.cc',
495
496 # Deprecated test cases.
497 #'tests/test_instance_deprecated.cc',
498 # Var_deprecated fails in TestPassReference, and we probably won't
499 # fix it.
500 #'tests/test_var_deprecated.cc'
501 ],
502 },
503 },
504 ],
505 }],
506 ],
415 } 507 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698