Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to download Chromium source code?

Tags:

git

chromium

I'd like to download some Chromium source code. In particular, the folder described at https://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/extensions/email_this_page/

How can I do that?

I can't see the clone URL. I'm not even sure whether it's a git repo.

like image 601
Colonel Panic Avatar asked Mar 12 '14 16:03

Colonel Panic


2 Answers

As of today, you can get it from GitHub:

The official GitHub mirror of the Chromium source: https://github.com/chromium/chromium

like image 116
Speedoops Avatar answered Oct 06 '22 00:10

Speedoops


Per https://chromium.googlesource.com/chromium/src

git clone https://chromium.googlesource.com/chromium/src

Easy peasy lemon squeezy

like image 33
Colonel Panic Avatar answered Oct 06 '22 01:10

Colonel Panic