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

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

Issue 2865113002: AecDump implementation. (Closed)
Patch Set: Removed extra build deps from dependent CL. Created 3 years, 7 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("../../../webrtc.gni") # This contains def of 'rtc_enable_protobuf'
2
3 rtc_source_set("aec_dump") {
4 sources = [
5 "aec_dump_factory.h",
6 ]
7
8 public_deps = [
9 "..:aec_dump_interface",
10 ]
11
12 deps = [
13 "../../../base:rtc_base_approved",
14 ]
15 }
16
17 if (rtc_enable_protobuf) {
18 rtc_source_set("aec_dump_impl") {
19 sources = [
20 "aec_dump_impl.cc",
21 "aec_dump_impl.h",
22 "capture_stream_info.cc",
23 "capture_stream_info.h",
24 "write_to_file_task.cc",
25 "write_to_file_task.h",
26 ]
27
28 public = []
29
30 public_deps = [
31 ":aec_dump",
32 "..:aec_dump_interface",
33 ]
34
35 deps = [
36 "../../../base:protobuf_utils",
37 "../../../base:rtc_base_approved",
38 "../../../base:rtc_task_queue",
39 "../../../modules:module_api",
40 "../../../system_wrappers",
41 ]
42
43 deps += [ "../:audioproc_debug_proto" ]
44 }
45
46 rtc_source_set("aec_dump_unittests") {
47 testonly = true
48 defines = []
49 deps = [
50 ":aec_dump_impl",
51 "..:aec_dump_interface",
52 "..:audioproc_debug_proto",
53 "../../../base:rtc_task_queue",
54 "../../../modules:module_api",
55 "../../../test:test_support",
56 "//testing/gtest",
57 ]
58 sources = [
59 "aec_dump_unittest.cc",
60 ]
61 }
62 }
63
64 rtc_source_set("null_aec_dump_factory") {
65 assert_no_deps = [ ":aec_dump_impl" ]
66 sources = [
67 "null_aec_dump_factory.cc",
68 ]
69
70 public_deps = [
71 ":aec_dump",
72 "..:aec_dump_interface",
73 ]
74 }
OLDNEW
« no previous file with comments | « webrtc/modules/audio_processing/BUILD.gn ('k') | webrtc/modules/audio_processing/aec_dump/aec_dump_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698