OLD | NEW |
1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 | 8 |
9 { | 9 { |
10 'includes': [ | 10 'includes': [ |
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
462 'type': 'none', | 462 'type': 'none', |
463 'dependencies': [ | 463 'dependencies': [ |
464 '<(apk_tests_path):modules_tests_apk', | 464 '<(apk_tests_path):modules_tests_apk', |
465 ], | 465 ], |
466 }, | 466 }, |
467 ], | 467 ], |
468 }], | 468 }], |
469 ['test_isolation_mode != "noop"', { | 469 ['test_isolation_mode != "noop"', { |
470 'targets': [ | 470 'targets': [ |
471 { | 471 { |
| 472 'target_name': 'audio_codec_speed_tests_run', |
| 473 'type': 'none', |
| 474 'dependencies': [ |
| 475 'audio_codec_speed_tests', |
| 476 ], |
| 477 'includes': [ |
| 478 '../build/isolate.gypi', |
| 479 ], |
| 480 'sources': [ |
| 481 'audio_codec_speed_tests.isolate', |
| 482 ], |
| 483 }, |
| 484 { |
| 485 'target_name': 'audio_decoder_unittests_run', |
| 486 'type': 'none', |
| 487 'dependencies': [ |
| 488 'audio_decoder_unittests', |
| 489 ], |
| 490 'includes': [ |
| 491 '../build/isolate.gypi', |
| 492 ], |
| 493 'sources': [ |
| 494 'audio_decoder_unittests.isolate', |
| 495 ], |
| 496 }, |
| 497 { |
| 498 'target_name': 'audio_device_tests_run', |
| 499 'type': 'none', |
| 500 'dependencies': [ |
| 501 'audio_device_tests', |
| 502 ], |
| 503 'includes': [ |
| 504 '../build/isolate.gypi', |
| 505 ], |
| 506 'sources': [ |
| 507 'audio_device_tests.isolate', |
| 508 ], |
| 509 }, |
| 510 { |
472 'target_name': 'modules_tests_run', | 511 'target_name': 'modules_tests_run', |
473 'type': 'none', | 512 'type': 'none', |
474 'dependencies': [ | 513 'dependencies': [ |
475 'modules_tests', | 514 'modules_tests', |
476 ], | 515 ], |
477 'includes': [ | 516 'includes': [ |
478 '../build/isolate.gypi', | 517 '../build/isolate.gypi', |
479 ], | 518 ], |
480 'sources': [ | 519 'sources': [ |
481 'modules_tests.isolate', | 520 'modules_tests.isolate', |
482 ], | 521 ], |
483 }, | 522 }, |
484 { | 523 { |
485 'target_name': 'modules_unittests_run', | 524 'target_name': 'modules_unittests_run', |
486 'type': 'none', | 525 'type': 'none', |
487 'dependencies': [ | 526 'dependencies': [ |
488 'modules_unittests', | 527 'modules_unittests', |
489 ], | 528 ], |
490 'includes': [ | 529 'includes': [ |
491 '../build/isolate.gypi', | 530 '../build/isolate.gypi', |
492 ], | 531 ], |
493 'sources': [ | 532 'sources': [ |
494 'modules_unittests.isolate', | 533 'modules_unittests.isolate', |
495 ], | 534 ], |
496 }, | 535 }, |
| 536 { |
| 537 'target_name': 'video_render_tests_run', |
| 538 'type': 'none', |
| 539 'dependencies': [ |
| 540 'video_render_tests', |
| 541 ], |
| 542 'includes': [ |
| 543 '../build/isolate.gypi', |
| 544 ], |
| 545 'sources': [ |
| 546 'video_render_tests.isolate', |
| 547 ], |
| 548 }, |
497 ], | 549 ], |
498 }], | 550 }], |
499 ], | 551 ], |
500 }], # include_tests | 552 }], # include_tests |
501 ], # conditions | 553 ], # conditions |
502 } | 554 } |
OLD | NEW |