From 25724047892db5bc6b1f5bb0af46886152a46bda Mon Sep 17 00:00:00 2001 From: Mirko Bonadei Date: Mon, 18 Sep 2017 13:09:16 +0200 Subject: [PATCH] Removing useless include_dirs entry. After the migration from serc/webrtc to src/ this entry in the include_dirs list is not needed anymore. Bug: chromium:611808 Change-Id: I17c87509b73b8a44f758d59ada28d366da664649 Reviewed-on: https://webrtc-review.googlesource.com/1920 Reviewed-by: Henrik Kjellander Commit-Queue: Mirko Bonadei Cr-Commit-Position: refs/heads/master@{#19894} --- modules/audio_coding/BUILD.gn | 40 ++++++----------------------------- 1 file changed, 7 insertions(+), 33 deletions(-) diff --git a/modules/audio_coding/BUILD.gn b/modules/audio_coding/BUILD.gn index 2e06649a09..84f369f86d 100644 --- a/modules/audio_coding/BUILD.gn +++ b/modules/audio_coding/BUILD.gn @@ -153,10 +153,7 @@ rtc_static_library("legacy_encoded_audio_frame") { } config("cng_config") { - include_dirs = [ - "../../..", - "codecs/cng/include", - ] + include_dirs = [ "codecs/cng/include" ] } rtc_static_library("cng") { @@ -198,10 +195,7 @@ rtc_static_library("red") { } config("g711_config") { - include_dirs = [ - "../../..", - "codecs/g711/include", - ] + include_dirs = [ "codecs/g711/include" ] } rtc_static_library("g711") { @@ -239,10 +233,7 @@ rtc_source_set("g711_c") { } config("g722_config") { - include_dirs = [ - "../../..", - "codecs/g722/include", - ] + include_dirs = [ "codecs/g722/include" ] } rtc_static_library("g722") { @@ -282,10 +273,7 @@ rtc_source_set("g722_c") { } config("ilbc_config") { - include_dirs = [ - "../../..", - "codecs/ilbc/include", - ] + include_dirs = [ "codecs/ilbc/include" ] } rtc_static_library("ilbc") { @@ -480,10 +468,7 @@ rtc_static_library("isac_common") { } config("isac_config") { - include_dirs = [ - "../../..", - "codecs/isac/main/include", - ] + include_dirs = [ "codecs/isac/main/include" ] } rtc_static_library("isac") { @@ -574,10 +559,7 @@ rtc_static_library("isac_c") { } config("isac_fix_config") { - include_dirs = [ - "../../..", - "codecs/isac/fix/include", - ] + include_dirs = [ "codecs/isac/fix/include" ] } rtc_static_library("isac_fix") { @@ -760,10 +742,7 @@ if (rtc_build_with_neon) { } config("pcm16b_config") { - include_dirs = [ - "../../..", - "codecs/pcm16b/include", - ] + include_dirs = [ "codecs/pcm16b/include" ] } rtc_static_library("pcm16b") { @@ -802,10 +781,6 @@ rtc_source_set("pcm16b_c") { ] } -config("opus_config") { - include_dirs = [ "../../.." ] -} - rtc_static_library("webrtc_opus") { sources = [ "codecs/opus/audio_decoder_opus.cc", @@ -1690,7 +1665,6 @@ if (rtc_include_tests) { include_dirs = [ "neteq/include", "neteq/test", - "../../", ] if (is_win) {