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

Unified Diff: webrtc/modules/BUILD.gn

Issue 2843913002: Reland of Creating webrtc/modules:module_api (Closed)
Patch Set: Fixing syntax error in BUILD.gn file 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/common_video/BUILD.gn ('k') | webrtc/modules/audio_coding/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/BUILD.gn
diff --git a/webrtc/modules/BUILD.gn b/webrtc/modules/BUILD.gn
index e750a81097ffb5a9887ada2709af2cbf19c96e49..b6978258daa4abf020cc788d0f4cf1f57ba7dd83 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",
@@ -199,8 +211,6 @@ if (rtc_include_tests) {
rtc_test("modules_unittests") {
testonly = true
-
- deps = []
defines = []
sources = [
"module_common_types_unittest.cc",
@@ -211,7 +221,8 @@ if (rtc_include_tests) {
suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
}
- deps += [
+ deps = [
+ ":module_api",
"../test:test_main",
"audio_coding:audio_coding_unittests",
"audio_conference_mixer:audio_conference_mixer_unittests",
« no previous file with comments | « webrtc/common_video/BUILD.gn ('k') | webrtc/modules/audio_coding/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698