Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(650)

Side by Side Diff: webrtc/modules/audio_processing/aec_dump/BUILD.gn

Issue 2778783002: AecDump interface (Closed)
Patch Set: Next version; large changes to interface. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 import("//third_party/protobuf/proto_library.gni")
2 import("../../../webrtc.gni")
3
4 rtc_source_set("aec_dump") {
5 sources = [
6 "aec_dump_factory.h",
7 ]
8
9 public_deps = [
10 "..:aec_dump_interface",
11 ]
12 }
13
14 rtc_source_set("null_aec_dump_factory") {
15 assert_no_deps = [ ":aec_dump_impl" ]
16 sources = [
17 "null_aec_dump_factory.cc",
18 ]
19
20 public_deps = [
21 ":aec_dump",
22 "..:aec_dump_interface",
23 ]
24 }
25
26 rtc_source_set("aec_dump_unittests") {
27 testonly = true
28 defines = []
29 deps = [
30 ":aec_dump",
31 "..:aec_dump_interface",
32 ]
33 sources = [
34 "aec_dump_unittest.cc",
35 ]
36 if (rtc_enable_protobuf) {
37 deps += [
38 ":null_aec_dump_factory",
39 "..:audioproc_debug_proto",
40 "../../../base:rtc_task_queue",
41 "../../../test:test_support",
42 "//testing/gtest",
43
44 # Might be added later:
45 # "..:audioproc_protobuf_utils",
46 # "..:audioproc_unittest_proto",
47 ]
48 } else {
49 deps += [ ":null_aec_dump_factory" ]
50 }
51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698