I am using ninja build on linux system.
ninja -C out/Default chrome
If I am changing something in src/third_party/webkit or src/chrome , ninja know this and run only partial rebuild. But it does not work with skia sources from "src/third_party/skia" if i am changing for example
src/third_party/skia/src/images/SkImageEncoder.cpp for debuging purposes
> ninja -C out/Default chrome
says.
ninja: Entering directory `out/Default'
ninja: no work to do.
I have tried to find out skia target on ninja build but it does make any changes.
Does anybody know why ? And how can i rebuild skia and then link it to chrome binary without whole code recompiling ?