commit | d770e570505ad383ffc75bf8122759adf7d840c8 | [log] [tgz] |
---|---|---|
author | Primiano Tucci <primiano@google.com> | Sun Oct 01 05:28:39 2017 -0700 |
committer | Primiano Tucci <primiano@google.com> | Sun Oct 01 05:28:39 2017 -0700 |
tree | c934fa58c241d5327e6de31d5c7f7da660b4b44d | |
parent | ac3fd3ec81910657551eaef154c97d6f15fc121d [diff] |
Add Travis Continuous Integration config Adds a .travis.yml that contains initial build and test coverage for Linux and OSX. Android & emulator coming next. Change-Id: I46c196ec393df7443747f057c5f21c49f717cfb0
If you are a chromium developer and have depot_tools installed you can avoid the build/
prefix below and just use gn/ninja from depot_tools.
build/install-build-deps
to install third-party build deps (NDK etc)build/gn args out/android
to generate build files and enter in the editor:target_os = "android" # or "linux" for local testing target_cpu = "arm" # or "arm64" is_debug = true # or false for release
build/ninja -C out/android all
TODO. The plan is to autogenerate the Android.bp build files from the master GN build files (or temporarily maintain both until we can autogenerate them). Will come in next CLs.