xref: /aosp_15_r20/external/skia/site/docs/dev/chrome/repo.md (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1
2---
3title: "Working in a Chromium repo"
4linkTitle: "Working in a Chromium repo"
5
6---
7
8
9To work on Skia inside a Chromium checkout, run the following:
10
11    cd chromium/src/third_party/skia
12    python3 tools/git-sync-deps
13    bin/gn gen out/Debug
14
15The second command does a minimal "just sync the DEPS" emulation of `gclient
16sync` for Skia into chromium/src/third_party/skia/third_party.  After that,
17`ninja -C out/Debug dm` in chromium/src/third_party/skia will get you rolling.
18
19We no longer recommend the .gclient file manipulation to have Chromium DEPS also
20sync Skia's DEPS.  Most of those DEPS are for building and testing only;
21Chromium doesn't need any of them, and it can be confusing and problematic if
22they somehow get mixed into the Chromium build.
23
24