summaryrefslogtreecommitdiff
path: root/common_audio
diff options
context:
space:
mode:
authorAndroid Chromium Automerger <chromium-automerger@android>2014-06-25 15:04:30 +0000
committerAndroid Chromium Automerger <chromium-automerger@android>2014-06-25 15:04:30 +0000
commit4c21d3a8817eb02f39b986c257f171da3166ecfc (patch)
treedac148172d6ee1d7359938e530741be884b1b1eb /common_audio
parentb0cf5e180c1851aaa78ea6a20830e650970ab732 (diff)
parentc34b9e5d5cd44c31c4f9da649b71d0d3132cf516 (diff)
downloadwebrtc-4c21d3a8817eb02f39b986c257f171da3166ecfc.tar.gz
Merge third_party/webrtc from https://chromium.googlesource.com/external/webrtc/trunk/webrtc.git at c34b9e5d5cd44c31c4f9da649b71d0d3132cf516
This commit was generated by merge_from_chromium.py. Change-Id: Ibdea97e7e6e800b2b7d7d3122a1d77e467cfbde4
Diffstat (limited to 'common_audio')
-rw-r--r--common_audio/BUILD.gn26
-rw-r--r--common_audio/OWNERS2
2 files changed, 28 insertions, 0 deletions
diff --git a/common_audio/BUILD.gn b/common_audio/BUILD.gn
new file mode 100644
index 00000000..4dcc3226
--- /dev/null
+++ b/common_audio/BUILD.gn
@@ -0,0 +1,26 @@
+# Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
+#
+# Use of this source code is governed by a BSD-style license
+# that can be found in the LICENSE file in the root of the source
+# tree. An additional intellectual property rights grant can be found
+# in the file PATENTS. All contributing project authors may
+# be found in the AUTHORS file in the root of the source tree.
+
+import("//build/config/arm.gni")
+import("../build/webrtc.gni")
+
+source_set("common_audio") {
+ # TODO(andrew): Implement.
+}
+
+if (cpu_arch == "x86" || cpu_arch == "x64") {
+ source_set("common_audio_sse2") {
+ # TODO(andrew): Implement.
+ }
+}
+
+if (cpu_arch == "arm" && arm_version == 7) {
+ source_set("common_audio_neon") {
+ # TODO(andrew): Implement.
+ }
+}
diff --git a/common_audio/OWNERS b/common_audio/OWNERS
index 83d774b2..98ec4728 100644
--- a/common_audio/OWNERS
+++ b/common_audio/OWNERS
@@ -9,3 +9,5 @@ per-file *.isolate=kjellander@webrtc.org
# structural changes, please get a review from a reviewer in this file.
per-file *.gyp=*
per-file *.gypi=*
+
+per-file BUILD.gn=kjellander@webrtc.org