| 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': [ |
| 11 '../build/common.gypi', | 11 '../build/common.gypi', |
| 12 'audio_coding/audio_coding.gypi', | 12 'audio_coding/audio_coding.gypi', |
| 13 'audio_conference_mixer/audio_conference_mixer.gypi', | 13 'audio_conference_mixer/audio_conference_mixer.gypi', |
| 14 'audio_device/audio_device.gypi', | 14 'audio_device/audio_device.gypi', |
| 15 'audio_processing/audio_processing.gypi', | 15 'audio_processing/audio_processing.gypi', |
| 16 'bitrate_controller/bitrate_controller.gypi', | 16 'bitrate_controller/bitrate_controller.gypi', |
| 17 'congestion_controller/congestion_controller.gypi', | 17 'congestion_controller/congestion_controller.gypi', |
| 18 'desktop_capture/desktop_capture.gypi', | 18 'desktop_capture/desktop_capture.gypi', |
| 19 'media_file/media_file.gypi', | 19 'media_file/media_file.gypi', |
| 20 'pacing/pacing.gypi', | 20 'pacing/pacing.gypi', |
| 21 'remote_bitrate_estimator/remote_bitrate_estimator.gypi', | 21 'remote_bitrate_estimator/remote_bitrate_estimator.gypi', |
| 22 'rtp_rtcp/rtp_rtcp.gypi', | 22 'rtp_rtcp/rtp_rtcp.gypi', |
| 23 'utility/utility.gypi', | 23 'utility/utility.gypi', |
| 24 'video_coding/codecs/h264/h264.gypi', | 24 'video_coding/codecs/h264/h264.gypi', |
| 25 'video_coding/codecs/i420/i420.gypi', | 25 'video_coding/codecs/i420/i420.gypi', |
| 26 'video_coding/video_coding.gypi', | 26 'video_coding/video_coding.gypi', |
| 27 'video_capture/video_capture.gypi', | 27 'video_capture/video_capture.gypi', |
| 28 'video_processing/video_processing.gypi', | 28 'video_processing/video_processing.gypi', |
| 29 'video_render/video_render.gypi', |
| 29 ], | 30 ], |
| 30 'conditions': [ | 31 'conditions': [ |
| 31 ['include_tests==1', { | 32 ['include_tests==1', { |
| 32 'includes': [ | 33 'includes': [ |
| 33 'audio_coding/audio_coding_tests.gypi', | 34 'audio_coding/audio_coding_tests.gypi', |
| 34 'audio_processing/audio_processing_tests.gypi', | 35 'audio_processing/audio_processing_tests.gypi', |
| 35 'rtp_rtcp/test/testFec/test_fec.gypi', | 36 'rtp_rtcp/test/testFec/test_fec.gypi', |
| 36 'video_coding/video_coding_test.gypi', | 37 'video_coding/video_coding_test.gypi', |
| 37 'video_coding/codecs/test/video_codecs_test_framework.gypi', | 38 'video_coding/codecs/test/video_codecs_test_framework.gypi', |
| 38 'video_coding/codecs/tools/video_codecs_tools.gypi', | 39 'video_coding/codecs/tools/video_codecs_tools.gypi', |
| (...skipping 737 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 776 'dependencies': [ | 777 'dependencies': [ |
| 777 'modules_unittests', | 778 'modules_unittests', |
| 778 ], | 779 ], |
| 779 'includes': [ | 780 'includes': [ |
| 780 '../build/isolate.gypi', | 781 '../build/isolate.gypi', |
| 781 ], | 782 ], |
| 782 'sources': [ | 783 'sources': [ |
| 783 'modules_unittests.isolate', | 784 'modules_unittests.isolate', |
| 784 ], | 785 ], |
| 785 }, | 786 }, |
| 787 { |
| 788 'target_name': 'video_render_tests_run', |
| 789 'type': 'none', |
| 790 'dependencies': [ |
| 791 'video_render_tests', |
| 792 ], |
| 793 'includes': [ |
| 794 '../build/isolate.gypi', |
| 795 ], |
| 796 'sources': [ |
| 797 'video_render_tests.isolate', |
| 798 ], |
| 799 }, |
| 786 ], | 800 ], |
| 787 }], | 801 }], |
| 788 ], | 802 ], |
| 789 }], # include_tests | 803 }], # include_tests |
| 790 ], # conditions | 804 ], # conditions |
| 791 } | 805 } |
| OLD | NEW |