Revert of Add arraysize to rtc_base_approved. Remove dependency of audio_device on rtc_base. (patchset #1 id:1 of https://codereview.webrtc.org/2346763002/ )

Reason for revert:
Breaks iOS

Original issue's description:
> Add arraysize to rtc_base_approved. Remove dependency of audio_device on rtc_base.
>
> BUG=webrtc:3806
> NOTRY=True
>
> Committed: https://crrev.com/100c9d02669910bce06099b3cc1eaad60fd661dd
> Cr-Commit-Position: refs/heads/master@{#14223}

TBR=kjellander@webrtc.org,henrika@webrtc.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=webrtc:3806

Review-Url: https://codereview.webrtc.org/2340253003
Cr-Commit-Position: refs/heads/master@{#14224}
This commit is contained in:
maxmorin 2016-09-15 01:45:25 -07:00 committed by Commit bot
parent 100c9d0266
commit 89fb9201b7
3 changed files with 3 additions and 2 deletions

View File

@ -93,7 +93,6 @@ rtc_static_library("rtc_base_approved") {
sources = [
"array_view.h",
"arraysize.h",
"atomicops.h",
"bind.h",
"bitbuffer.cc",
@ -289,6 +288,7 @@ rtc_static_library("rtc_base") {
sources = [
"applefilesystem.mm",
"arraysize.h",
"asyncfile.cc",
"asyncfile.h",
"asyncinvoker-inl.h",

View File

@ -29,7 +29,6 @@
'target_name': 'rtc_base_approved',
'type': 'static_library',
'sources': [
'arraysize.h',
'array_view.h',
'atomicops.h',
'bind.h',
@ -232,6 +231,7 @@
],
'sources': [
'applefilesystem.mm',
'arraysize.h',
'asyncfile.cc',
'asyncfile.h',
'asyncinvoker.cc',

View File

@ -53,6 +53,7 @@ rtc_source_set("audio_device") {
deps = [
"../..:webrtc_common",
"../../base:rtc_base",
"../../base:rtc_base_approved",
"../../base:rtc_task_queue",
"../../common_audio",