1Working in a Chromium repo
2==========================
3
4To work on Skia inside a Chromium checkout, run the following:
5
6~~~~
7$ cd chromium/src/third_party/skia
8$ tools/git-sync-deps
9~~~~
10
11This command does a minimal "just sync the DEPS" emulation of gclient sync for
12Skia into chromium/src/third_party/skia/third_party.  After that, make dm or
13./gyp_skia && ninja -C out/Debug dm in chromium/src/third_party/skia will get
14you rolling.
15
16We no longer recommend the .gclient file manipulation to have Chromium DEPS also
17sync Skia's DEPS.  Most of those DEPS are for building and testing only;
18Chromium doesn't need any of them, and it can be confusing and problematic if
19they somehow get mixed into the Chromium build.
20