2014-04-11 14:49:50 +00:00
|
|
|
*.pyc
|
2013-02-08 16:59:59 +00:00
|
|
|
*.swp
|
2015-07-24 20:15:58 +00:00
|
|
|
*.iml
|
2012-09-13 15:26:51 +00:00
|
|
|
.DS_Store
|
2014-04-17 22:56:46 +00:00
|
|
|
.android_config
|
2016-02-16 19:48:06 +00:00
|
|
|
.deps_sha1
|
2012-09-13 15:26:51 +00:00
|
|
|
.gclient*
|
2014-04-17 22:56:46 +00:00
|
|
|
.gm-actuals
|
2015-07-24 20:15:58 +00:00
|
|
|
.gradle
|
|
|
|
.idea
|
2014-08-22 03:18:45 +00:00
|
|
|
.cproject
|
|
|
|
.project
|
|
|
|
.settings/
|
2014-04-11 14:49:50 +00:00
|
|
|
TAGS
|
2014-10-04 04:05:00 +00:00
|
|
|
bower_components
|
2014-06-20 14:47:36 +00:00
|
|
|
common
|
2014-04-17 22:56:46 +00:00
|
|
|
gyp/build
|
2016-06-28 11:41:49 +00:00
|
|
|
infra/bots/tools/luci-go/linux64/cipd
|
2016-05-27 18:11:22 +00:00
|
|
|
infra/bots/tools/luci-go/linux64/isolate
|
2016-06-28 11:41:49 +00:00
|
|
|
infra/bots/tools/luci-go/mac64/cipd
|
2016-05-27 18:11:22 +00:00
|
|
|
infra/bots/tools/luci-go/mac64/isolate
|
2016-06-28 11:41:49 +00:00
|
|
|
infra/bots/tools/luci-go/win64/cipd.exe
|
2016-05-27 18:11:22 +00:00
|
|
|
infra/bots/tools/luci-go/win64/isolate.exe
|
2014-04-17 22:56:46 +00:00
|
|
|
out
|
2015-07-24 20:15:58 +00:00
|
|
|
platform_tools/android/apps/build
|
|
|
|
platform_tools/android/apps/*.properties
|
|
|
|
platform_tools/android/apps/*/build
|
|
|
|
platform_tools/android/apps/*/src/main/libs
|
2016-03-24 19:20:01 +00:00
|
|
|
sampleapp_prefs.txt
|
2015-09-23 19:40:34 +00:00
|
|
|
/skps
|
2016-02-24 23:38:48 +00:00
|
|
|
skia.conf
|
2014-04-17 22:56:46 +00:00
|
|
|
third_party/externals
|
2014-10-17 14:37:05 +00:00
|
|
|
tools/skp/page_sets/data/*.json
|
|
|
|
tools/skp/page_sets/data/*.wpr
|
2014-04-17 22:56:46 +00:00
|
|
|
xcodebuild
|
2016-06-23 12:56:18 +00:00
|
|
|
|
|
|
|
build
|
|
|
|
buildtools
|
|
|
|
tools/clang
|
GN
What we've got here is a little GN MVP. It's lacking any knobs and doesn't yet build anything but libskia, zlib, libpng, and libjpeg-turbo. I've been hopping back and forth between Linux at work and Mac at home. These seem to be at least partially working, enough to build and run cmake/example.cpp.
The xcode backend seems to work. From here, we can start exploring how to handle other backends (cmake,Android make, Google3). There are a couple things I want to try:
- add another backend like vs or xcode to GN directly
- intercept via a custom toolchain
- reverse from ninja -t commands
That last option seems kind of fun.
This tries to piggyback on Chrome's GN setup as much as possible. Chrome's got quite a lot figured out, and we're basically required to do this if we want to have a single GN build system shareable by Chrome, our bots, and other clients.
This pulls in some new DEPS:
- build: Chrome's GN configuration, and much more
- buildtools: hashes for gn binary, pulled via hooks
- tools/clang: hashes for Chrome's clang, pulled via hooks into third_party/llvm-build
It additionally symlinks tools/gyp to third_party/externals/gyp. GN pulls some stuff from tools/gyp on Mac.
Have not yet tried building for Windows, Android, or iOS.
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2087593002
Committed: https://skia.googlesource.com/skia/+/1d8de594f126b9a80bd8f8fa2005e90faf3b5b17
Review-Url: https://codereview.chromium.org/2087593002
2016-06-23 17:29:30 +00:00
|
|
|
third_party/llvm-build
|