17

Courgette (description, source) is a Google tool that is used to update Chrome efficiently.

It seems like a great and easy-to-use tool, but I cannot manage to compile it. I've tried VS2010, GYP and using a C++ compiler directly but all has failed.

Does anybody have any advice on how to compile Courgette?

MultiplyByZer0
  • 6,302
  • 3
  • 32
  • 48
Nikolai Samteladze
  • 7,699
  • 6
  • 44
  • 70
  • 1
    [@Mehrdad](https://stackoverflow.com/users/541686/mehrdad) has successfully compiled Courgette on Windows, and has shared the binary [**here**](https://stackoverflow.com/a/32369783/2688027). – MultiplyByZer0 Jan 30 '19 at 07:23

1 Answers1

10

At least, you may follow an official Google guide on how to get compiled the whole Chromium. But instead of calling ninja -C out/Debug chrome, you can build only courgette: ninja -C out/Debug courgette. Or, if you insist on VS way of things - find the courgette project inside the Chromium project tree and "Build" it.

abyss.7
  • 13,882
  • 11
  • 56
  • 100