Clone the depot_tools repository:
$ git clone https://chromium.googlesource.com/chromium/tools/depot_tools.gitAdd depot_tools to the end of your PATH (you will probably want to put this in your ~/.bashrc or ~/.zshrc). Assuming you cloned depot_tools to /path/to/depot_tools:
$ export PATH="$PATH:/path/to/depot_tools"Create a chromium directory for the checkout and change to it (you can call this whatever you like and put it wherever you like, as long as the full path has no spaces):
$ mkdir path/to/castanets && cd path/to/castanetsDownload the code using the command below.
$ git clone -b castanets_63 https://github.com/Samsung/castanets srcIf you did not specify the 'src' directory name at the end of the command, the source code would have been downloaded to the 'castanets' directory. In this case, change the directory name.
$ mv castanets srcInstall additional build dependencies
$ build/install-build-deps.shWe need a gclient configuration. To create a .gclient file, run:
$ build/create_gclient.shOnce you've run install-build-deps at least once, you can now run the Chromium-specific sync, which will download additional binaries and other things you might need:
$ gclient sync --with_branch_headIf you get an SSL certificate error at Seoul R&D center, follow the directions below.
$ cd path/to/depot_tools
$ git checkout 3beabd0aa40ca39216761418587251297376e6aa
$ git apply path/to/castanets/src/build/SRnD_depot_tools.patchIf you get SSL3_GET_SERVER_CERTIFICATE error, follow the directions below.
Add below line to .bashrc file.
export NO_AUTH_BOTO_CONFIG=~/.botoCreate ~/.boto file for the following content.
[Boto]
proxy = 10.112.1.178
proxy_port = 8080
https_validate_certificates = FalseChromium uses Ninja as its main build tool along with a tool called GN to generate .ninja files. You can create any number of build directories with different configurations. To create a build directory, run:
$ gn gen out/DefaultYou set build arguments on a build directory by typing:
$ gn args out/DefaultThis will bring up an editor. Type build args into that file like this:
enable_castanets=true
enable_nacl=false
Build castanets (the “chrome” target) with Ninja using the command:
$ ninja -C out/Default chromeDevice A: Browser Process
$ ./chrome <URL>Device B: Renderer Process
$ ./chrome --type=renderer --server-address=<IP ADDR>