diff --git a/src/build/common.gypi b/src/build/common.gypi index 13695054b..3a906ae5d 100644 --- a/src/build/common.gypi +++ b/src/build/common.gypi @@ -70,6 +70,7 @@ 'include_tests%': 0, 'webrtc_root%': '<(DEPTH)/third_party/webrtc', + 'third_party_root%': '<(DEPTH)/third_party', }, { # Settings for the standalone (not-in-Chromium) build. @@ -86,6 +87,7 @@ 'include_tests%': 1, 'webrtc_root%': '<(DEPTH)/src', + 'third_party_root%': '<(DEPTH)', # TODO(andrew): For now, disable the Chrome plugins, which causes a # flood of chromium-style warnings. Investigate enabling them: diff --git a/src/common_audio/resampler/resampler.gypi b/src/common_audio/resampler/resampler.gypi index 0e08ff450..96fd34a38 100644 --- a/src/common_audio/resampler/resampler.gypi +++ b/src/common_audio/resampler/resampler.gypi @@ -36,8 +36,8 @@ 'type': 'executable', 'dependencies': [ 'resampler', - '<(webrtc_root)/../test/test.gyp:test_support_main', - '<(webrtc_root)/../testing/gtest.gyp:gtest', + '<(third_party_root)/test/test.gyp:test_support_main', + '<(third_party_root)/testing/gtest.gyp:gtest', ], 'sources': [ 'resampler_unittest.cc', diff --git a/src/common_audio/signal_processing/signal_processing.gypi b/src/common_audio/signal_processing/signal_processing.gypi index 14e3d3eec..98f09733f 100644 --- a/src/common_audio/signal_processing/signal_processing.gypi +++ b/src/common_audio/signal_processing/signal_processing.gypi @@ -66,8 +66,8 @@ 'type': 'executable', 'dependencies': [ 'signal_processing', - '<(webrtc_root)/../test/test.gyp:test_support_main', - '<(webrtc_root)/../testing/gtest.gyp:gtest', + '<(third_party_root)/test/test.gyp:test_support_main', + '<(third_party_root)/testing/gtest.gyp:gtest', ], 'sources': [ 'signal_processing_unittest.cc', diff --git a/src/common_audio/vad/vad.gypi b/src/common_audio/vad/vad.gypi index 189c15d6b..1b1ded833 100644 --- a/src/common_audio/vad/vad.gypi +++ b/src/common_audio/vad/vad.gypi @@ -44,8 +44,8 @@ 'type': 'executable', 'dependencies': [ 'vad', - '<(webrtc_root)/../test/test.gyp:test_support_main', - '<(webrtc_root)/../testing/gtest.gyp:gtest', + '<(third_party_root)/test/test.gyp:test_support_main', + '<(third_party_root)/testing/gtest.gyp:gtest', ], 'sources': [ 'vad_core_unittest.cc', diff --git a/src/common_video/jpeg/jpeg.gypi b/src/common_video/jpeg/jpeg.gypi index 0ac9e8d34..cff773634 100644 --- a/src/common_video/jpeg/jpeg.gypi +++ b/src/common_video/jpeg/jpeg.gypi @@ -61,8 +61,8 @@ 'type': 'executable', 'dependencies': [ 'webrtc_jpeg', - '<(webrtc_root)/../testing/gtest.gyp:gtest', - '<(webrtc_root)/../test/test.gyp:test_support_main', + '<(third_party_root)/testing/gtest.gyp:gtest', + '<(third_party_root)/test/test.gyp:test_support_main', ], 'sources': [ 'jpeg_unittest.cc', diff --git a/src/common_video/libyuv/libyuv.gypi b/src/common_video/libyuv/libyuv.gypi index 8e704488c..1f9dddf90 100644 --- a/src/common_video/libyuv/libyuv.gypi +++ b/src/common_video/libyuv/libyuv.gypi @@ -40,9 +40,9 @@ 'type': 'executable', 'dependencies': [ 'webrtc_libyuv', - '<(webrtc_root)/../testing/gtest.gyp:gtest', + '<(third_party_root)/testing/gtest.gyp:gtest', '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers', - '<(webrtc_root)/../test/test.gyp:test_support_main', + '<(third_party_root)/test/test.gyp:test_support_main', ], 'sources': [ 'libyuv_unittest.cc', diff --git a/src/modules/audio_coding/codecs/cng/cng.gypi b/src/modules/audio_coding/codecs/cng/cng.gypi index f7734b5e9..e62a4cf90 100644 --- a/src/modules/audio_coding/codecs/cng/cng.gypi +++ b/src/modules/audio_coding/codecs/cng/cng.gypi @@ -38,8 +38,8 @@ 'type': 'executable', 'dependencies': [ 'CNG', - '<(webrtc_root)/../testing/gtest.gyp:gtest', - '<(webrtc_root)/../test/test.gyp:test_support_main', + '<(third_party_root)/testing/gtest.gyp:gtest', + '<(third_party_root)/test/test.gyp:test_support_main', ], 'sources': [ 'cng_unittest.cc', diff --git a/src/modules/audio_coding/codecs/g711/g711.gypi b/src/modules/audio_coding/codecs/g711/g711.gypi index 81b065de2..dd183eccd 100644 --- a/src/modules/audio_coding/codecs/g711/g711.gypi +++ b/src/modules/audio_coding/codecs/g711/g711.gypi @@ -35,8 +35,8 @@ 'type': 'executable', 'dependencies': [ 'G711', - '<(webrtc_root)/../test/test.gyp:test_support_main', - '<(webrtc_root)/../testing/gtest.gyp:gtest', + '<(third_party_root)/test/test.gyp:test_support_main', + '<(third_party_root)/testing/gtest.gyp:gtest', ], 'sources': [ 'g711_unittest.cc', diff --git a/src/modules/audio_coding/codecs/g722/g722.gypi b/src/modules/audio_coding/codecs/g722/g722.gypi index 55d7c5d4c..df4f2db64 100644 --- a/src/modules/audio_coding/codecs/g722/g722.gypi +++ b/src/modules/audio_coding/codecs/g722/g722.gypi @@ -35,8 +35,8 @@ 'type': 'executable', 'dependencies': [ 'G722', - '<(webrtc_root)/../test/test.gyp:test_support_main', - '<(webrtc_root)/../testing/gtest.gyp:gtest', + '<(third_party_root)/test/test.gyp:test_support_main', + '<(third_party_root)/testing/gtest.gyp:gtest', ], 'sources': [ 'g722_unittest.cc', diff --git a/src/modules/audio_coding/codecs/pcm16b/pcm16b.gypi b/src/modules/audio_coding/codecs/pcm16b/pcm16b.gypi index ede3129b6..8962b8f19 100644 --- a/src/modules/audio_coding/codecs/pcm16b/pcm16b.gypi +++ b/src/modules/audio_coding/codecs/pcm16b/pcm16b.gypi @@ -33,8 +33,8 @@ 'type': 'executable', 'dependencies': [ 'PCM16B', - '<(webrtc_root)/../test/test.gyp:test_support_main', - '<(webrtc_root)/../testing/gtest.gyp:gtest', + '<(third_party_root)/test/test.gyp:test_support_main', + '<(third_party_root)/testing/gtest.gyp:gtest', ], 'sources': [ 'pcm16b_unittest.cc', diff --git a/src/modules/audio_coding/main/source/audio_coding_module.gypi b/src/modules/audio_coding/main/source/audio_coding_module.gypi index 8b581bf20..d2897e46a 100644 --- a/src/modules/audio_coding/main/source/audio_coding_module.gypi +++ b/src/modules/audio_coding/main/source/audio_coding_module.gypi @@ -101,8 +101,8 @@ 'type': 'executable', 'dependencies': [ 'audio_coding_module', - '<(webrtc_root)/../test/test.gyp:test_support_main', - '<(webrtc_root)/../testing/gtest.gyp:gtest', + '<(third_party_root)/test/test.gyp:test_support_main', + '<(third_party_root)/testing/gtest.gyp:gtest', '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers', ], 'sources': [ @@ -131,8 +131,8 @@ 'audio_coding_module', 'NetEq', '<(webrtc_root)/common_audio/common_audio.gyp:vad', - '<(webrtc_root)/../testing/gtest.gyp:gtest', - '<(webrtc_root)/../test/test.gyp:test_support_main', + '<(third_party_root)/testing/gtest.gyp:gtest', + '<(third_party_root)/test/test.gyp:test_support_main', '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers', ], 'sources': [ diff --git a/src/modules/audio_coding/neteq/neteq.gypi b/src/modules/audio_coding/neteq/neteq.gypi index ebeed6cba..1c6a973dd 100644 --- a/src/modules/audio_coding/neteq/neteq.gypi +++ b/src/modules/audio_coding/neteq/neteq.gypi @@ -93,8 +93,8 @@ 'dependencies': [ 'NetEq', 'NetEqTestTools', - '<(webrtc_root)/../testing/gtest.gyp:gtest', - '<(webrtc_root)/../test/test.gyp:test_support_main', + '<(third_party_root)/testing/gtest.gyp:gtest', + '<(third_party_root)/test/test.gyp:test_support_main', ], 'sources': [ 'webrtc_neteq_unittest.cc', @@ -178,7 +178,7 @@ 'target_name': 'RTPjitter', 'type': 'executable', 'dependencies': [ - '<(webrtc_root)/../testing/gtest.gyp:gtest', + '<(third_party_root)/testing/gtest.gyp:gtest', ], 'sources': [ 'test/RTPjitter.cc', @@ -189,7 +189,7 @@ 'type': 'executable', 'dependencies': [ 'NetEqTestTools', - '<(webrtc_root)/../testing/gtest.gyp:gtest', + '<(third_party_root)/testing/gtest.gyp:gtest', ], 'sources': [ 'test/RTPanalyze.cc', @@ -200,7 +200,7 @@ 'type': 'executable', 'dependencies': [ 'NetEqTestTools', - '<(webrtc_root)/../testing/gtest.gyp:gtest', + '<(third_party_root)/testing/gtest.gyp:gtest', ], 'sources': [ 'test/RTPchange.cc', @@ -211,7 +211,7 @@ 'type': 'executable', 'dependencies': [ 'NetEqTestTools', - '<(webrtc_root)/../testing/gtest.gyp:gtest', + '<(third_party_root)/testing/gtest.gyp:gtest', ], 'sources': [ 'test/RTPtimeshift.cc', @@ -222,7 +222,7 @@ 'type': 'executable', 'dependencies': [ 'NetEqTestTools', - '<(webrtc_root)/../testing/gtest.gyp:gtest', + '<(third_party_root)/testing/gtest.gyp:gtest', ], 'sources': [ 'test/RTPcat.cc', @@ -254,7 +254,7 @@ 'iLBC', 'iSAC', 'CNG', - '<(webrtc_root)/../testing/gtest.gyp:gtest', + '<(third_party_root)/testing/gtest.gyp:gtest', ], 'direct_dependent_settings': { 'include_dirs': [ diff --git a/src/modules/audio_conference_mixer/source/audio_conference_mixer.gypi b/src/modules/audio_conference_mixer/source/audio_conference_mixer.gypi index 7394c7267..ed214de26 100644 --- a/src/modules/audio_conference_mixer/source/audio_conference_mixer.gypi +++ b/src/modules/audio_conference_mixer/source/audio_conference_mixer.gypi @@ -51,8 +51,8 @@ 'type': 'executable', 'dependencies': [ 'audio_conference_mixer', - '<(webrtc_root)/../testing/gtest.gyp:gtest', - '<(webrtc_root)/../test/test.gyp:test_support_main', + '<(third_party_root)/testing/gtest.gyp:gtest', + '<(third_party_root)/test/test.gyp:test_support_main', '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers', ], 'sources': [ diff --git a/src/modules/audio_device/main/source/audio_device.gypi b/src/modules/audio_device/main/source/audio_device.gypi index 96161de83..1926b4632 100644 --- a/src/modules/audio_device/main/source/audio_device.gypi +++ b/src/modules/audio_device/main/source/audio_device.gypi @@ -175,8 +175,8 @@ 'dependencies': [ 'audio_device', 'webrtc_utility', - '<(webrtc_root)/../test/test.gyp:test_support_main', - '<(webrtc_root)/../testing/gtest.gyp:gtest', + '<(third_party_root)/test/test.gyp:test_support_main', + '<(third_party_root)/testing/gtest.gyp:gtest', '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers', ], 'sources': [ @@ -192,8 +192,8 @@ 'webrtc_utility', '<(webrtc_root)/common_audio/common_audio.gyp:resampler', '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers', - '<(webrtc_root)/../test/test.gyp:test_support', - '<(webrtc_root)/../testing/gtest.gyp:gtest', + '<(third_party_root)/test/test.gyp:test_support', + '<(third_party_root)/testing/gtest.gyp:gtest', ], 'sources': [ '../test/audio_device_test_func.cc', diff --git a/src/modules/audio_processing/apm_tests.gypi b/src/modules/audio_processing/apm_tests.gypi index 586b8d4d4..1124165c6 100644 --- a/src/modules/audio_processing/apm_tests.gypi +++ b/src/modules/audio_processing/apm_tests.gypi @@ -26,8 +26,8 @@ 'audioproc_unittest_proto', '<(webrtc_root)/common_audio/common_audio.gyp:signal_processing', '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers', - '<(webrtc_root)/../test/test.gyp:test_support', - '<(webrtc_root)/../testing/gtest.gyp:gtest', + '<(third_party_root)/test/test.gyp:test_support', + '<(third_party_root)/testing/gtest.gyp:gtest', ], 'sources': [ 'aec/system_delay_unittest.cc', @@ -59,7 +59,7 @@ 'audio_processing', 'audioproc_debug_proto', '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers', - '<(webrtc_root)/../testing/gtest.gyp:gtest', + '<(third_party_root)/testing/gtest.gyp:gtest', ], 'sources': [ 'test/process_test.cc', ], }, @@ -69,7 +69,7 @@ 'dependencies': [ 'audioproc_debug_proto', '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers', - '<(webrtc_root)/../third_party/google-gflags/google-gflags.gyp:google-gflags', + '<(third_party_root)/third_party/google-gflags/google-gflags.gyp:google-gflags', ], 'sources': [ 'test/unpack.cc', ], }, diff --git a/src/modules/bitrate_controller/bitrate_controller.gypi b/src/modules/bitrate_controller/bitrate_controller.gypi index 4f19cb525..1ea6fe883 100644 --- a/src/modules/bitrate_controller/bitrate_controller.gypi +++ b/src/modules/bitrate_controller/bitrate_controller.gypi @@ -41,8 +41,8 @@ 'type': 'executable', 'dependencies': [ 'bitrate_controller', - '<(webrtc_root)/../test/test.gyp:test_support_main', - '<(webrtc_root)/../testing/gtest.gyp:gtest', + '<(third_party_root)/test/test.gyp:test_support_main', + '<(third_party_root)/testing/gtest.gyp:gtest', ], 'sources': [ 'bitrate_controller_unittest.cc', diff --git a/src/modules/media_file/source/media_file.gypi b/src/modules/media_file/source/media_file.gypi index 435f946a7..02a46e765 100644 --- a/src/modules/media_file/source/media_file.gypi +++ b/src/modules/media_file/source/media_file.gypi @@ -48,8 +48,8 @@ 'type': 'executable', 'dependencies': [ 'media_file', - '<(webrtc_root)/../testing/gtest.gyp:gtest', - '<(webrtc_root)/../test/test.gyp:test_support_main', + '<(third_party_root)/testing/gtest.gyp:gtest', + '<(third_party_root)/test/test.gyp:test_support_main', ], 'sources': [ 'media_file_unittest.cc', diff --git a/src/modules/remote_bitrate_estimator/remote_bitrate_estimator.gypi b/src/modules/remote_bitrate_estimator/remote_bitrate_estimator.gypi index 356e53a2f..4f159ae31 100644 --- a/src/modules/remote_bitrate_estimator/remote_bitrate_estimator.gypi +++ b/src/modules/remote_bitrate_estimator/remote_bitrate_estimator.gypi @@ -49,9 +49,9 @@ 'type': 'executable', 'dependencies': [ 'remote_bitrate_estimator', - '<(webrtc_root)/../testing/gmock.gyp:gmock', - '<(webrtc_root)/../testing/gtest.gyp:gtest', - '<(webrtc_root)/../test/test.gyp:test_support_main', + '<(third_party_root)/testing/gmock.gyp:gmock', + '<(third_party_root)/testing/gtest.gyp:gtest', + '<(third_party_root)/test/test.gyp:test_support_main', ], 'sources': [ 'include/mock/mock_remote_bitrate_observer.h', diff --git a/src/modules/rtp_rtcp/source/rtp_rtcp_tests.gypi b/src/modules/rtp_rtcp/source/rtp_rtcp_tests.gypi index 201d0af5b..63253b64d 100644 --- a/src/modules/rtp_rtcp/source/rtp_rtcp_tests.gypi +++ b/src/modules/rtp_rtcp/source/rtp_rtcp_tests.gypi @@ -13,9 +13,9 @@ 'type': 'executable', 'dependencies': [ 'rtp_rtcp', - '<(webrtc_root)/../testing/gmock.gyp:gmock', - '<(webrtc_root)/../testing/gtest.gyp:gtest', - '<(webrtc_root)/../test/test.gyp:test_support_main', + '<(third_party_root)/testing/gmock.gyp:gmock', + '<(third_party_root)/testing/gtest.gyp:gtest', + '<(third_party_root)/test/test.gyp:test_support_main', '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers', ], 'include_dirs': [ diff --git a/src/modules/rtp_rtcp/test/testAPI/test_api.gypi b/src/modules/rtp_rtcp/test/testAPI/test_api.gypi index d47e6d4e0..94cecf5c8 100644 --- a/src/modules/rtp_rtcp/test/testAPI/test_api.gypi +++ b/src/modules/rtp_rtcp/test/testAPI/test_api.gypi @@ -13,8 +13,8 @@ 'type': 'executable', 'dependencies': [ 'rtp_rtcp', - '<(webrtc_root)/../test/test.gyp:test_support_main', - '<(webrtc_root)/../testing/gtest.gyp:gtest', + '<(third_party_root)/test/test.gyp:test_support_main', + '<(third_party_root)/testing/gtest.gyp:gtest', ], 'include_dirs': [ diff --git a/src/modules/rtp_rtcp/test/testFec/test_fec.gypi b/src/modules/rtp_rtcp/test/testFec/test_fec.gypi index b7f933ba6..97a19f487 100644 --- a/src/modules/rtp_rtcp/test/testFec/test_fec.gypi +++ b/src/modules/rtp_rtcp/test/testFec/test_fec.gypi @@ -13,7 +13,7 @@ 'type': 'executable', 'dependencies': [ 'rtp_rtcp', - '<(webrtc_root)/../test/test.gyp:test_support_main', + '<(third_party_root)/test/test.gyp:test_support_main', ], 'include_dirs': [ diff --git a/src/modules/udp_transport/source/udp_transport.gypi b/src/modules/udp_transport/source/udp_transport.gypi index 5e5b862c9..c36f4283c 100644 --- a/src/modules/udp_transport/source/udp_transport.gypi +++ b/src/modules/udp_transport/source/udp_transport.gypi @@ -88,9 +88,9 @@ 'type': 'executable', 'dependencies': [ 'udp_transport', - '<(webrtc_root)/../testing/gtest.gyp:gtest', - '<(webrtc_root)/../testing/gmock.gyp:gmock', - '<(webrtc_root)/../test/test.gyp:test_support_main', + '<(third_party_root)/testing/gtest.gyp:gtest', + '<(third_party_root)/testing/gmock.gyp:gmock', + '<(third_party_root)/test/test.gyp:test_support_main', ], 'sources': [ 'udp_transport_unittest.cc', diff --git a/src/modules/utility/source/utility.gypi b/src/modules/utility/source/utility.gypi index 0013c46fa..52f509bde 100644 --- a/src/modules/utility/source/utility.gypi +++ b/src/modules/utility/source/utility.gypi @@ -75,8 +75,8 @@ 'type': 'executable', 'dependencies': [ 'webrtc_utility', - '<(webrtc_root)/../testing/gtest.gyp:gtest', - '<(webrtc_root)/../test/test.gyp:test_support_main', + '<(third_party_root)/testing/gtest.gyp:gtest', + '<(third_party_root)/test/test.gyp:test_support_main', ], 'sources': [ 'audio_frame_operations_unittest.cc', diff --git a/src/modules/video_capture/main/source/video_capture.gypi b/src/modules/video_capture/main/source/video_capture.gypi index df985c9a7..4404de0f8 100644 --- a/src/modules/video_capture/main/source/video_capture.gypi +++ b/src/modules/video_capture/main/source/video_capture.gypi @@ -141,8 +141,8 @@ 'video_capture_module', 'webrtc_utility', '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers', - '<(webrtc_root)/../testing/gtest.gyp:gtest', - '<(webrtc_root)/../test/test.gyp:test_support_main', + '<(third_party_root)/testing/gtest.gyp:gtest', + '<(third_party_root)/test/test.gyp:test_support_main', ], 'include_dirs': [ '../interface', diff --git a/src/modules/video_coding/codecs/test/video_codecs_test_framework.gypi b/src/modules/video_coding/codecs/test/video_codecs_test_framework.gypi index 29109d568..da5c6fb5c 100644 --- a/src/modules/video_coding/codecs/test/video_codecs_test_framework.gypi +++ b/src/modules/video_coding/codecs/test/video_codecs_test_framework.gypi @@ -14,7 +14,7 @@ 'target_name': 'video_codecs_test_framework', 'type': '<(library)', 'dependencies': [ - '<(webrtc_root)/../test/test.gyp:test_support', + '<(third_party_root)/test/test.gyp:test_support', ], 'sources': [ 'mock/mock_packet_manipulator.h', @@ -35,8 +35,8 @@ 'video_codecs_test_framework', 'webrtc_video_coding', '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers', - '<(webrtc_root)/../testing/gmock.gyp:gmock', - '<(webrtc_root)/../test/test.gyp:test_support_main', + '<(third_party_root)/testing/gmock.gyp:gmock', + '<(third_party_root)/test/test.gyp:test_support_main', ], 'sources': [ 'packet_manipulator_unittest.cc', @@ -51,9 +51,9 @@ 'video_codecs_test_framework', 'webrtc_video_coding', 'webrtc_vp8', - '<(webrtc_root)/../testing/gtest.gyp:gtest', - '<(webrtc_root)/../test/metrics.gyp:metrics', - '<(webrtc_root)/../test/test.gyp:test_support_main', + '<(third_party_root)/testing/gtest.gyp:gtest', + '<(third_party_root)/test/metrics.gyp:metrics', + '<(third_party_root)/test/test.gyp:test_support_main', ], 'sources': [ 'videoprocessor_integrationtest.cc', diff --git a/src/modules/video_coding/codecs/test_framework/test_framework.gypi b/src/modules/video_coding/codecs/test_framework/test_framework.gypi index e785ae973..00b0ea2de 100644 --- a/src/modules/video_coding/codecs/test_framework/test_framework.gypi +++ b/src/modules/video_coding/codecs/test_framework/test_framework.gypi @@ -15,16 +15,16 @@ 'type': '<(library)', 'dependencies': [ - '<(webrtc_root)/../test/metrics.gyp:metrics', - '<(webrtc_root)/../test/test.gyp:test_support', - '<(webrtc_root)/../testing/gtest.gyp:gtest', + '<(third_party_root)/test/metrics.gyp:metrics', + '<(third_party_root)/test/test.gyp:test_support', + '<(third_party_root)/testing/gtest.gyp:gtest', '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers', '<(webrtc_root)/common_video/common_video.gyp:webrtc_libyuv', ], 'include_dirs': [ '../interface', - '<(webrtc_root)/../testing/gtest/include', + '<(third_party_root)/testing/gtest/include', '../../../../common_video/interface', ], diff --git a/src/modules/video_coding/codecs/tools/video_codecs_tools.gypi b/src/modules/video_coding/codecs/tools/video_codecs_tools.gypi index 4d65aa86b..5442dc66f 100644 --- a/src/modules/video_coding/codecs/tools/video_codecs_tools.gypi +++ b/src/modules/video_coding/codecs/tools/video_codecs_tools.gypi @@ -17,8 +17,8 @@ 'video_codecs_test_framework', 'webrtc_video_coding', 'webrtc_vp8', - '<(webrtc_root)/../test/metrics.gyp:metrics', - '<(webrtc_root)/../third_party/google-gflags/google-gflags.gyp:google-gflags', + '<(third_party_root)/test/metrics.gyp:metrics', + '<(third_party_root)/third_party/google-gflags/google-gflags.gyp:google-gflags', ], 'sources': [ 'video_quality_measurement.cc', diff --git a/src/modules/video_coding/codecs/vp8/main/source/vp8.gypi b/src/modules/video_coding/codecs/vp8/main/source/vp8.gypi index d9ed73a13..db939ecee 100644 --- a/src/modules/video_coding/codecs/vp8/main/source/vp8.gypi +++ b/src/modules/video_coding/codecs/vp8/main/source/vp8.gypi @@ -24,14 +24,14 @@ 'conditions': [ ['build_with_chromium==1', { 'dependencies': [ - '<(webrtc_root)/../libvpx/libvpx.gyp:libvpx', + '<(third_party_root)/libvpx/libvpx.gyp:libvpx', ], 'defines': [ 'WEBRTC_LIBVPX_VERSION=960' # Bali ], },{ 'dependencies': [ - '<(webrtc_root)/../third_party/libvpx/libvpx.gyp:libvpx', + '<(third_party_root)/third_party/libvpx/libvpx.gyp:libvpx', ], 'defines': [ 'WEBRTC_LIBVPX_VERSION=971' # Cayuga @@ -69,9 +69,9 @@ 'webrtc_vp8', '<(webrtc_root)/common_video/common_video.gyp:webrtc_libyuv', '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers', - '<(webrtc_root)/../test/test.gyp:test_support', - '<(webrtc_root)/../test/test.gyp:test_support_main', - '<(webrtc_root)/../testing/gtest.gyp:gtest', + '<(third_party_root)/test/test.gyp:test_support', + '<(third_party_root)/test/test.gyp:test_support_main', + '<(third_party_root)/testing/gtest.gyp:gtest', ], 'sources': [ # header files @@ -96,13 +96,13 @@ 'target_name': 'vp8_unittests', 'type': 'executable', 'dependencies': [ - '<(webrtc_root)/../test/test.gyp:test_support_main', - '<(webrtc_root)/../testing/gtest.gyp:gtest', - '<(webrtc_root)/../third_party/libvpx/libvpx.gyp:libvpx', + '<(third_party_root)/test/test.gyp:test_support_main', + '<(third_party_root)/testing/gtest.gyp:gtest', + '<(third_party_root)/third_party/libvpx/libvpx.gyp:libvpx', 'webrtc_vp8', ], 'include_dirs': [ - '<(webrtc_root)/../third_party/libvpx/source/libvpx', + '<(third_party_root)/third_party/libvpx/source/libvpx', ], 'sources': [ 'reference_picture_selection_unittest.cc', diff --git a/src/modules/video_coding/main/source/video_coding_test.gypi b/src/modules/video_coding/main/source/video_coding_test.gypi index 7ab265c59..144ec6c17 100644 --- a/src/modules/video_coding/main/source/video_coding_test.gypi +++ b/src/modules/video_coding/main/source/video_coding_test.gypi @@ -11,9 +11,9 @@ 'target_name': 'video_coding_test', 'type': 'executable', 'dependencies': [ - '<(webrtc_root)/../testing/gtest.gyp:gtest', - '<(webrtc_root)/../test/test.gyp:test_support', - '<(webrtc_root)/../test/metrics.gyp:metrics', + '<(third_party_root)/testing/gtest.gyp:gtest', + '<(third_party_root)/test/test.gyp:test_support', + '<(third_party_root)/test/metrics.gyp:metrics', 'webrtc_video_coding', 'rtp_rtcp', 'webrtc_utility', @@ -68,9 +68,9 @@ 'type': 'executable', 'dependencies': [ 'webrtc_video_coding', - '<(webrtc_root)/../test/test.gyp:test_support_main', - '<(webrtc_root)/../testing/gtest.gyp:gtest', - '<(webrtc_root)/../testing/gmock.gyp:gmock', + '<(third_party_root)/test/test.gyp:test_support_main', + '<(third_party_root)/testing/gtest.gyp:gtest', + '<(third_party_root)/testing/gmock.gyp:gmock', '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers', ], 'include_dirs': [ diff --git a/src/modules/video_processing/main/test/vpm_tests.gypi b/src/modules/video_processing/main/test/vpm_tests.gypi index e53ac07bd..be5267e94 100644 --- a/src/modules/video_processing/main/test/vpm_tests.gypi +++ b/src/modules/video_processing/main/test/vpm_tests.gypi @@ -14,8 +14,8 @@ 'dependencies': [ 'video_processing', 'webrtc_utility', - '<(webrtc_root)/../test/test.gyp:test_support_main', - '<(webrtc_root)/../testing/gtest.gyp:gtest', + '<(third_party_root)/test/test.gyp:test_support_main', + '<(third_party_root)/testing/gtest.gyp:gtest', ], 'sources': [ # headers diff --git a/src/video_engine/test/auto_test/vie_auto_test.gypi b/src/video_engine/test/auto_test/vie_auto_test.gypi index 0a12319fa..af73138c6 100644 --- a/src/video_engine/test/auto_test/vie_auto_test.gypi +++ b/src/video_engine/test/auto_test/vie_auto_test.gypi @@ -16,10 +16,10 @@ '<(webrtc_root)/modules/modules.gyp:video_render_module', '<(webrtc_root)/modules/modules.gyp:video_capture_module', '<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine_core', - '<(webrtc_root)/../testing/gtest.gyp:gtest', - '<(webrtc_root)/../third_party/google-gflags/google-gflags.gyp:google-gflags', - '<(webrtc_root)/../test/metrics.gyp:metrics', - '<(webrtc_root)/../test/test.gyp:test_support', + '<(third_party_root)/testing/gtest.gyp:gtest', + '<(third_party_root)/third_party/google-gflags/google-gflags.gyp:google-gflags', + '<(third_party_root)/test/metrics.gyp:metrics', + '<(third_party_root)/test/test.gyp:test_support', '<(webrtc_root)/test/libtest/libtest.gyp:libtest', 'video_engine_core', 'libvietest', diff --git a/src/video_engine/test/libvietest/libvietest.gypi b/src/video_engine/test/libvietest/libvietest.gypi index 5cb54e1ae..9fed0f190 100644 --- a/src/video_engine/test/libvietest/libvietest.gypi +++ b/src/video_engine/test/libvietest/libvietest.gypi @@ -12,8 +12,8 @@ 'type': '<(library)', 'dependencies': [ '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers', - '<(webrtc_root)/../testing/gtest.gyp:gtest', - '<(webrtc_root)/../test/test.gyp:test_support', + '<(third_party_root)/testing/gtest.gyp:gtest', + '<(third_party_root)/test/test.gyp:test_support', 'video_engine_core', ], 'direct_dependent_settings': { diff --git a/src/video_engine/video_engine_core.gypi b/src/video_engine/video_engine_core.gypi index e0cc1db3e..a3e975405 100644 --- a/src/video_engine/video_engine_core.gypi +++ b/src/video_engine/video_engine_core.gypi @@ -138,9 +138,9 @@ 'type': 'executable', 'dependencies': [ 'video_engine_core', - '<(webrtc_root)/../testing/gtest.gyp:gtest', - '<(webrtc_root)/../testing/gmock.gyp:gmock', - '<(webrtc_root)/../test/test.gyp:test_support_main', + '<(third_party_root)/testing/gtest.gyp:gtest', + '<(third_party_root)/testing/gmock.gyp:gmock', + '<(third_party_root)/test/test.gyp:test_support_main', ], 'include_dirs': [ '..', diff --git a/src/voice_engine/main/source/voice_engine_core.gypi b/src/voice_engine/main/source/voice_engine_core.gypi index 1cdf465d0..4e6717594 100644 --- a/src/voice_engine/main/source/voice_engine_core.gypi +++ b/src/voice_engine/main/source/voice_engine_core.gypi @@ -120,8 +120,8 @@ 'type': 'executable', 'dependencies': [ 'voice_engine_core', - '<(webrtc_root)/../testing/gtest.gyp:gtest', - '<(webrtc_root)/../test/test.gyp:test_support_main', + '<(third_party_root)/testing/gtest.gyp:gtest', + '<(third_party_root)/test/test.gyp:test_support_main', # The rest are to satisfy the channel_unittest include chain. # This would be unnecessary if we had qualified includes. '<(webrtc_root)/common_audio/common_audio.gyp:resampler', diff --git a/src/voice_engine/main/test/voice_engine_tests.gypi b/src/voice_engine/main/test/voice_engine_tests.gypi index a5d0c6444..de93cdd72 100644 --- a/src/voice_engine/main/test/voice_engine_tests.gypi +++ b/src/voice_engine/main/test/voice_engine_tests.gypi @@ -15,9 +15,9 @@ 'dependencies': [ 'voice_engine_core', '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers', - '<(webrtc_root)/../test/test.gyp:test_support', - '<(webrtc_root)/../testing/gtest.gyp:gtest', - '<(webrtc_root)/../testing/gmock.gyp:gmock', + '<(third_party_root)/test/test.gyp:test_support', + '<(third_party_root)/testing/gtest.gyp:gtest', + '<(third_party_root)/testing/gmock.gyp:gmock', '<(webrtc_root)/test/libtest/libtest.gyp:libtest', ], 'include_dirs': [ @@ -93,8 +93,8 @@ 'target_name': 'voe_cmd_test', 'type': 'executable', 'dependencies': [ - '<(webrtc_root)/../test/test.gyp:test_support', - '<(webrtc_root)/../testing/gtest.gyp:gtest', + '<(third_party_root)/test/test.gyp:test_support', + '<(third_party_root)/testing/gtest.gyp:gtest', 'voice_engine_core', '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers', ], @@ -113,7 +113,7 @@ 'dependencies': [ 'voice_engine_core', '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers', - '<(webrtc_root)/../test/test.gyp:test_support', + '<(third_party_root)/test/test.gyp:test_support', ], 'include_dirs': [ 'win_test',