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