File: README.md

package info (click to toggle)
chromium 138.0.7204.183-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,071,908 kB
  • sloc: cpp: 34,937,088; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,953; asm: 946,768; xml: 739,971; pascal: 187,324; sh: 89,623; perl: 88,663; objc: 79,944; sql: 50,304; cs: 41,786; fortran: 24,137; makefile: 21,806; php: 13,980; tcl: 13,166; yacc: 8,925; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (44 lines) | stat: -rw-r--r-- 1,742 bytes parent folder | download | duplicates (37)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
This directory contains prebuilt tools used during end-to-end tests.
They will be downloaded by their SHA1 hash, and are not meant to be checked in.

Updating prebuilt_apprtc.zip:

- Follow AppRTC instructions:
    - `git clone https://github.com/webrtc/apprtc`
    - Install NodeJS:
        - Download <https://nodejs.org/> and extract it
        - `export PATH="$(pwd)/node-v6.10.3-linux-x64/bin:$PATH"`
    - `cd apprtc`
    - `npm install`
    - `export PATH="$(pwd)/node_modules/.bin:$PATH"`
    - `pip install --user --upgrade pip setuptools` - needed only on old systems
    - `grunt`
- Vendor collider's dependencies:
    - `ln -s "$(pwd)/src/collider" src/src`
    - `GOPATH="$(pwd)/src" go get -d collidermain`
    - `rm src/src`
- Install additional components:
    - `python temp/google-cloud-sdk/bin/dev_appserver.py out/app_engine`
        - Stop it and run the suggestion: `./temp/google-cloud-sdk/bin/gcloud
          components install app-engine-python-extras`
- Remove largest unneeded files:
    - `rm -rf .git node_modules browsers
      temp/google-cloud-sdk/.install/.{backup,download}
      temp/google-cloud-sdk/platform/google_appengine/lib/django-*`
- `zip -r prebuilt_apprtc.zip apprtc/`
- `mv prebuilt_apprtc.zip webrtc/src/rtc_tools/testing/prebuilt_apprtc.zip`

Updating golang/*:

- Go to <https://golang.org/dl/>
- Download these files:
    - go*.linux-amd64.tar.gz -> golang/linux/go.tar.gz
    - go*.darwin-amd64.tar.gz -> golang/mac/go.tar.gz
    - go*.windows-amd64.zip -> golang/windows/go.zip

After updating the archives:

- `cd webrtc/src/rtc_tools/testing`
- For each updated archive:
    - `upload_to_google_storage.py file.zip --bucket=chromium-webrtc-resources`
- `git commit -a && git cl upload`