Chromium Code Reviews| Index: webrtc/modules/BUILD.gn |
| diff --git a/webrtc/modules/BUILD.gn b/webrtc/modules/BUILD.gn |
| index e750a81097ffb5a9887ada2709af2cbf19c96e49..2ad90d808472a2b2f41fce8cc1c210bbfd50b973 100644 |
| --- a/webrtc/modules/BUILD.gn |
| +++ b/webrtc/modules/BUILD.gn |
| @@ -29,6 +29,18 @@ group("modules") { |
| ] |
| } |
| +rtc_source_set("module_api") { |
| + sources = [ |
| + "include/module.h", |
| + "include/module_common_types.h", |
| + ] |
| + deps = [ |
| + "..:webrtc_common", |
| + "../api:video_frame_api", |
| + "../base:rtc_base_approved", |
| + ] |
| +} |
| + |
| if (rtc_include_tests) { |
| modules_tests_resources = [ |
| "//resources/audio_coding/testfile32kHz.pcm", |
| @@ -200,7 +212,9 @@ if (rtc_include_tests) { |
| rtc_test("modules_unittests") { |
| testonly = true |
| - deps = [] |
| + deps = [ |
| + ":module_api", |
|
kjellander_webrtc
2017/04/25 20:14:40
Move this to line 229
mbonadei
2017/04/26 08:11:39
Done.
|
| + ] |
| defines = [] |
| sources = [ |
| "module_common_types_unittest.cc", |