| OLD | NEW |
| 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2012 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 'codecs/isac/isac_test.gypi', | |
| 13 'codecs/isac/isacfix_test.gypi', | |
| 14 ], | 12 ], |
| 15 'targets': [ | 13 'targets': [ |
| 16 { | 14 { |
| 17 'target_name': 'audio_codec_speed_tests', | 15 'target_name': 'video_engine_core_unittests', |
| 18 'type': '<(gtest_target_type)', | 16 'type': '<(gtest_target_type)', |
| 19 'dependencies': [ | 17 'dependencies': [ |
| 20 'audio_processing', | 18 '<(webrtc_root)/webrtc.gyp:webrtc', |
| 21 'isac_fix', | 19 '<(webrtc_root)/modules/modules.gyp:video_capture_module_internal_impl', |
| 22 'webrtc_opus', | 20 '<(webrtc_root)/modules/modules.gyp:video_render_module_internal_impl', |
| 23 '<(DEPTH)/testing/gtest.gyp:gtest', | 21 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 24 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', | 22 '<(DEPTH)/testing/gmock.gyp:gmock', |
| 25 '<(webrtc_root)/test/test.gyp:test_support_main', | 23 '<(webrtc_root)/test/test.gyp:test_support_main', |
| 26 ], | 24 ], |
| 27 'sources': [ | 25 'sources': [ |
| 28 'codecs/isac/fix/test/isac_speed_test.cc', | 26 'call_stats_unittest.cc', |
| 29 'codecs/opus/opus_speed_test.cc', | 27 'encoder_state_feedback_unittest.cc', |
| 30 'codecs/tools/audio_codec_speed_test.h', | 28 'overuse_frame_detector_unittest.cc', |
| 31 'codecs/tools/audio_codec_speed_test.cc', | 29 'payload_router_unittest.cc', |
| 30 'report_block_stats_unittest.cc', |
| 31 'stream_synchronization_unittest.cc', |
| 32 'vie_capturer_unittest.cc', |
| 33 'vie_codec_unittest.cc', |
| 34 'vie_remb_unittest.cc', |
| 32 ], | 35 ], |
| 33 'conditions': [ | 36 'conditions': [ |
| 34 ['OS=="android"', { | 37 ['OS=="android"', { |
| 35 'dependencies': [ | 38 'dependencies': [ |
| 36 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', | 39 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', |
| 37 ], | 40 ], |
| 38 }], | 41 }], |
| 39 ], | 42 ], |
| 40 }, | 43 }, |
| 41 ], | 44 ], # targets |
| 42 'conditions': [ | 45 'conditions': [ |
| 43 ['OS=="android"', { | 46 ['OS=="android"', { |
| 44 'targets': [ | 47 'targets': [ |
| 45 { | 48 { |
| 46 'target_name': 'audio_codec_speed_tests_apk_target', | 49 'target_name': 'video_engine_core_unittests_apk_target', |
| 47 'type': 'none', | 50 'type': 'none', |
| 48 'dependencies': [ | 51 'dependencies': [ |
| 49 '<(apk_tests_path):audio_codec_speed_tests_apk', | 52 '<(apk_tests_path):video_engine_core_unittests_apk', |
| 50 ], | 53 ], |
| 51 }, | 54 }, |
| 52 ], | 55 ], |
| 53 }], | 56 }], |
| 54 ['test_isolation_mode != "noop"', { | 57 ['test_isolation_mode != "noop"', { |
| 55 'targets': [ | 58 'targets': [ |
| 56 { | 59 { |
| 57 'target_name': 'audio_codec_speed_tests_run', | 60 'target_name': 'video_engine_core_unittests_run', |
| 58 'type': 'none', | 61 'type': 'none', |
| 59 'dependencies': [ | 62 'dependencies': [ |
| 60 'audio_codec_speed_tests', | 63 'video_engine_core_unittests', |
| 61 ], | 64 ], |
| 62 'includes': [ | 65 'includes': [ |
| 63 '../../build/isolate.gypi', | 66 '../build/isolate.gypi', |
| 64 ], | 67 ], |
| 65 'sources': [ | 68 'sources': [ |
| 66 'audio_codec_speed_tests.isolate', | 69 'video_engine_core_unittests.isolate', |
| 67 ], | 70 ], |
| 68 }, | 71 }, |
| 69 ], | 72 ], |
| 70 }], | 73 }], |
| 71 ], | 74 ], |
| 72 } | 75 } |
| OLD | NEW |