본문 바로가기

WebRTC

chromium 빌드하기

WebRTC 혼자만 가지고는 테스트 하기가 매우 어렵다고 판단하여 브라우저를 빌드하여 WebRTC 부분만 변경해보면 될것이라는 생각이 들어 chromium을 빌드하기로 결정하였다.

 

chromium

 

 

chromium 공식사이트 빌드 설명

 

Checking out and Building Chromium for Windows

Checking out and Building Chromium for Windows There are instructions for other platforms linked from the get the code page. Instructions for Google Employees Are you a Google employee? See go/building-chrome-win instead. System requirements A 64-bit Intel

chromium.googlesource.com

먼저 depot_tools 를 다운 받아 압축풀기를 C:\src\depot_tools 에 해준다.

 

환경변수의 Path 최상위에 C:\src\depot_tools 를 추가해준다.( 반드시 최상위에 해야한다.)

 

 

chromium 폴더 생성

mkdir chromium && cd chromium

fetch는 depot_tools에 포함되있는 git clone 비슷한 명령인 듯 하다.

아래 처럼 하면 chromium 프로젝트가 다운된다.

용량이 20gb 정도 되니 여유를 가지고 다운 받아야함

fetch chromium
cd src

 

 

$ gn gen --filters=//third_party/WebRTC/* out\Default

 

$ autoninja -C out\Default chrome

 

'WebRTC' 카테고리의 다른 글

SoX 명령어 cheat sheet  (0) 2020.07.22
aec_dump 관련 내용  (0) 2020.07.16
webRTC aec3 pipline  (0) 2020.06.16
chromium echo cancellation 테스트  (0) 2020.06.05
OverView  (0) 2020.06.03