diff --git a/api/video/BUILD.gn b/api/video/BUILD.gn index ec90bc137e..41367132f6 100644 --- a/api/video/BUILD.gn +++ b/api/video/BUILD.gn @@ -69,12 +69,6 @@ rtc_library("video_frame") { absl_deps = [ "//third_party/abseil-cpp/absl/types:optional" ] } -if (is_android) { - java_cpp_enum("video_frame_enums") { - sources = [ "video_codec_type.h" ] - } -} - rtc_library("video_frame_i010") { visibility = [ "*" ] sources = [ diff --git a/api/video/video_codec_type.h b/api/video/video_codec_type.h index 12dcfac1b9..74a4bc4258 100644 --- a/api/video/video_codec_type.h +++ b/api/video/video_codec_type.h @@ -13,7 +13,6 @@ namespace webrtc { -// GENERATED_JAVA_ENUM_PACKAGE: org.webrtc enum VideoCodecType { // There are various memset(..., 0, ...) calls in the code that rely on // kVideoCodecGeneric being zero. diff --git a/sdk/android/BUILD.gn b/sdk/android/BUILD.gn index be15a7d643..57b9d629be 100644 --- a/sdk/android/BUILD.gn +++ b/sdk/android/BUILD.gn @@ -323,7 +323,6 @@ if (is_android) { ] srcjar_deps = [ "//api:priority_enums", - "//api/video:video_frame_enums", "//rtc_base:network_monitor_enums", ] }