3

我正在尝试编译 WebRTC Native Stack 来构建libwebrtc.aar,但不幸的是无法理解出了什么问题。


系统信息:

Distributor ID: Ubuntu
Description:    Ubuntu 18.04.4 LTS
Release:        18.04
Codename:       bionic
Java-Version:   OpenJDK-8-JDK
Python-Version: Python 2.7.17

我已按照官方 WebRTC Native Development for Android中提供的完整步骤进行操作。这些步骤已经完成,没有任何中断,每一步都需要时间来完成。然后,我必须安装构建源代码所需的所有依赖项。

./build/install-build-deps.sh

在编译代码之前,我还检查了特定的 git 分支以进入不同的可用 WebRTC 版本,以使用此 git 命令列出所有分支。

git branch -r

我正在分享最新的 Git 分支:

在此处输入图像描述


我已经尝试了从branch-heads/60to 的每个 git 分支branch-heads/m79,并且每个分支在使用编译命令时都有不同的问题。我已经尝试了这两个过程来构建库,例如:


1- 使用 AAR 构建工具 ( ./tools_webrtc/android/build_aar.py)

confu@ubuntu:~/webrtc_android/src$ tools_webrtc/android/build_aar.py
INFO:root:Building: armeabi-v7a
ERROR at //webrtc.gni:591:7: Can't load input file.
      absl_include_config,
      ^------------------
Unable to load:
  /home/confu/webrtc_android/src/third_party/abseil-cpp/BUILD.gn
I also checked in the secondary tree for:
  /home/confu/webrtc_android/src/build/secondary/third_party/abseil-cpp/BUILD.gn
Traceback (most recent call last):
  File "tools_webrtc/android/build_aar.py", line 234, in <module>
    sys.exit(main())
  File "tools_webrtc/android/build_aar.py", line 230, in main
    args.build_dir, args.extra_gn_switches, args.extra_ninja_switches)
  File "tools_webrtc/android/build_aar.py", line 210, in BuildAar
    extra_ninja_switches)
  File "tools_webrtc/android/build_aar.py", line 166, in Build
    _RunGN(gn_args_list)
  File "tools_webrtc/android/build_aar.py", line 93, in _RunGN
    subprocess.check_call(cmd)
  File "/usr/lib/python2.7/subprocess.py", line 190, in check_call
    raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['/usr/bin/python', '/home/confu/webrtc_android/src/third_party/depot_tools/gn.py', 'gen', '/tmp/tmp1JDmHL/armeabi-v7a', '--args=arm_version=7 use_goma=false target_cpu="arm" is_component_build=false is_debug=false rtc_include_tests=false target_os="android"']' returned non-zero exit status 1

2- 使用手动编译 ( gn gen out/Debug --args='target_os="android" target_cpu="arm"')

confu@ubuntu:~/webrtc_android/src$ gn gen out/Debug --args='target_os="android" target_cpu="arm64"'
ERROR at //BUILD.gn:648:20: Assignment had no effect.
      java_files = [
                   ^
You set the variable "java_files" here and it was unused before it went
out of scope.
See //BUILD.gn:647:5: whence it was called.
    junit_binary("android_junit_tests") {
    ^------------------------------------

4

1 回答 1

3

Usman,跟着我按照这些步骤操作,我能够生成一个有效的 webrtc aar 模块:

 git checkout origin/master
 gclient revert
 gclient sync

你的问题就会得到解决。您正在检查一个位于源后面的分支,并且没有构建您所需的所有依赖项和模块libwebrtc.aar

于 2020-04-20T11:25:06.283 回答