-
Create a repo. including DEPS (e.g https://github.com/your-id/your-repo.git)
-
Create .gclient configuration file with the repo.
$ gclient config --name=src https://github.com/your-id/your-repo.git
-
Synchronize the repo.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
set -v | |
# Get the sources | |
mkdir gn-standalone | |
cd gn-standalone | |
mkdir tools | |
cd tools |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
libtool --mode=link g++ -static -o target.a component_1.a component_2.a ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"font_face": "Inconsolata", | |
"font_size": 18, | |
"line_padding_top": 0, | |
"line_padding_bottom": 0, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"fade_fold_buttons": false, | |
"word_wrap": true, | |
"bold_folder_labels": true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"build_systems": | |
[ | |
{ | |
"cmd": | |
[ | |
"$project_path/qnxbuild/qnxbuild.sh", | |
"--shared", | |
"--debug", | |
"--target=content_shell" |