diff --git a/Android.mk b/Android.mk index b9d31f8f3d..13ce90e27f 100644 --- a/Android.mk +++ b/Android.mk @@ -9,16 +9,16 @@ MY_WEBRTC_ROOT_PATH := $(call my-dir) # voice -include $(MY_WEBRTC_ROOT_PATH)/src/common_audio/signal_processing/Android.mk -include $(MY_WEBRTC_ROOT_PATH)/src/common_audio/vad/Android.mk -include $(MY_WEBRTC_ROOT_PATH)/src/modules/audio_processing/aec/Android.mk -include $(MY_WEBRTC_ROOT_PATH)/src/modules/audio_processing/aecm/Android.mk -include $(MY_WEBRTC_ROOT_PATH)/src/modules/audio_processing/agc/Android.mk -include $(MY_WEBRTC_ROOT_PATH)/src/modules/audio_processing/Android.mk -include $(MY_WEBRTC_ROOT_PATH)/src/modules/audio_processing/ns/Android.mk -include $(MY_WEBRTC_ROOT_PATH)/src/modules/audio_processing/utility/Android.mk -include $(MY_WEBRTC_ROOT_PATH)/src/modules/utility/source/Android.mk -include $(MY_WEBRTC_ROOT_PATH)/src/system_wrappers/source/Android.mk +include $(MY_WEBRTC_ROOT_PATH)/webrtc/common_audio/signal_processing/Android.mk +include $(MY_WEBRTC_ROOT_PATH)/webrtc/common_audio/vad/Android.mk +include $(MY_WEBRTC_ROOT_PATH)/webrtc/modules/audio_processing/aec/Android.mk +include $(MY_WEBRTC_ROOT_PATH)/webrtc/modules/audio_processing/aecm/Android.mk +include $(MY_WEBRTC_ROOT_PATH)/webrtc/modules/audio_processing/agc/Android.mk +include $(MY_WEBRTC_ROOT_PATH)/webrtc/modules/audio_processing/Android.mk +include $(MY_WEBRTC_ROOT_PATH)/webrtc/modules/audio_processing/ns/Android.mk +include $(MY_WEBRTC_ROOT_PATH)/webrtc/modules/audio_processing/utility/Android.mk +include $(MY_WEBRTC_ROOT_PATH)/webrtc/modules/utility/source/Android.mk +include $(MY_WEBRTC_ROOT_PATH)/webrtc/system_wrappers/source/Android.mk # build .so LOCAL_PATH := $(call my-dir) diff --git a/webrtc/modules/audio_processing/aecm/Android.mk b/webrtc/modules/audio_processing/aecm/Android.mk index 191d5bfe0d..d4a882cc40 100644 --- a/webrtc/modules/audio_processing/aecm/Android.mk +++ b/webrtc/modules/audio_processing/aecm/Android.mk @@ -60,7 +60,7 @@ GEN := $(LOCAL_PATH)/aecm_core_neon_offsets.h # Generate a header file aecm_core_neon_offsets.h which will be included in # assembly file aecm_core_neon.S, from file aecm_core_neon_offsets.c. -$(GEN): $(LOCAL_PATH)/../../../../src/build/generate_asm_header.py \ +$(GEN): $(LOCAL_PATH)/../../../build/generate_asm_header.py \ $(intermediates)/aecm_core_neon_offsets.S @python $^ $@ offset_aecm_ diff --git a/webrtc/modules/audio_processing/audio_processing_impl.cc b/webrtc/modules/audio_processing/audio_processing_impl.cc index ab5607a3d2..2f488c8e40 100644 --- a/webrtc/modules/audio_processing/audio_processing_impl.cc +++ b/webrtc/modules/audio_processing/audio_processing_impl.cc @@ -29,7 +29,7 @@ #ifdef WEBRTC_AUDIOPROC_DEBUG_DUMP // Files generated at build-time by the protobuf compiler. #ifdef WEBRTC_ANDROID_PLATFORM_BUILD -#include "external/webrtc/src/modules/audio_processing/debug.pb.h" +#include "external/webrtc/webrtc/modules/audio_processing/debug.pb.h" #else #include "webrtc/audio_processing/debug.pb.h" #endif diff --git a/webrtc/modules/audio_processing/ns/Android.mk b/webrtc/modules/audio_processing/ns/Android.mk index 3b4e7ae20a..f083c50224 100644 --- a/webrtc/modules/audio_processing/ns/Android.mk +++ b/webrtc/modules/audio_processing/ns/Android.mk @@ -61,7 +61,7 @@ GEN := $(LOCAL_PATH)/nsx_core_neon_offsets.h # Generate a header file nsx_core_neon_offsets.h which will be included in # assembly file nsx_core_neon.S, from file nsx_core_neon_offsets.c. -$(GEN): $(LOCAL_PATH)/../../../../src/build/generate_asm_header.py \ +$(GEN): $(LOCAL_PATH)/../../../build/generate_asm_header.py \ $(intermediates)/nsx_core_neon_offsets.S @python $^ $@ offset_nsx_ diff --git a/webrtc/modules/audio_processing/test/process_test.cc b/webrtc/modules/audio_processing/test/process_test.cc index 0e78230a8f..57f1719014 100644 --- a/webrtc/modules/audio_processing/test/process_test.cc +++ b/webrtc/modules/audio_processing/test/process_test.cc @@ -22,7 +22,7 @@ #include "scoped_ptr.h" #include "tick_util.h" #ifdef WEBRTC_ANDROID_PLATFORM_BUILD -#include "external/webrtc/src/modules/audio_processing/debug.pb.h" +#include "external/webrtc/webrtc/modules/audio_processing/debug.pb.h" #else #include "webrtc/audio_processing/debug.pb.h" #endif diff --git a/webrtc/modules/audio_processing/test/unit_test.cc b/webrtc/modules/audio_processing/test/unit_test.cc index 221facdf5b..d0520a03af 100644 --- a/webrtc/modules/audio_processing/test/unit_test.cc +++ b/webrtc/modules/audio_processing/test/unit_test.cc @@ -23,7 +23,7 @@ #include "thread_wrapper.h" #include "trace.h" #ifdef WEBRTC_ANDROID_PLATFORM_BUILD -#include "external/webrtc/src/modules/audio_processing/test/unittest.pb.h" +#include "external/webrtc/webrtc/modules/audio_processing/test/unittest.pb.h" #else #include "webrtc/audio_processing/unittest.pb.h" #endif