Creating webrtc/modules:module_api
This target keeps track of .h the files under webrtc/modules/include/ that are not part of any target. If a .h file is not part of a target the 'gn check' utility is not able to spot if a target is missing a dependency because even if it parses '#include' directives it is not able to find a target that contains these headers. BUG=webrtc:7513 NOTRY=True Review-Url: https://codereview.webrtc.org/2838873002 Cr-Commit-Position: refs/heads/master@{#17880}
This commit is contained in:
@ -94,6 +94,7 @@ rtc_static_library("video_coding") {
|
||||
":webrtc_i420",
|
||||
":webrtc_vp8",
|
||||
":webrtc_vp9",
|
||||
"..:module_api",
|
||||
"../..:video_stream_api",
|
||||
"../..:webrtc_common",
|
||||
"../../base:rtc_base",
|
||||
@ -129,6 +130,7 @@ rtc_static_library("video_coding_utility") {
|
||||
}
|
||||
|
||||
deps = [
|
||||
"..:module_api",
|
||||
"../..:webrtc_common",
|
||||
"../../api/video_codecs:video_codecs_api",
|
||||
"../../base:rtc_base_approved",
|
||||
@ -225,6 +227,7 @@ rtc_static_library("webrtc_vp8") {
|
||||
|
||||
deps = [
|
||||
":video_coding_utility",
|
||||
"..:module_api",
|
||||
"../..:webrtc_common",
|
||||
"../../api/video_codecs:video_codecs_api",
|
||||
"../../base:rtc_base_approved",
|
||||
@ -260,6 +263,7 @@ rtc_static_library("webrtc_vp9") {
|
||||
|
||||
deps = [
|
||||
":video_coding_utility",
|
||||
"..:module_api",
|
||||
"../../base:rtc_base_approved",
|
||||
"../../common_video",
|
||||
"../../system_wrappers",
|
||||
@ -543,6 +547,7 @@ if (rtc_include_tests) {
|
||||
":webrtc_h264",
|
||||
":webrtc_vp8",
|
||||
":webrtc_vp9",
|
||||
"..:module_api",
|
||||
"../..:webrtc_common",
|
||||
"../../api:video_frame_api",
|
||||
"../../api/video_codecs:video_codecs_api",
|
||||
|
||||
Reference in New Issue
Block a user