Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get Google Chrome Browser Source Code? [closed]

I have tried a variety of websites for how to get Google Chrome Browser Source Code: http://www.chromium.org/developers/how-tos/get-the-code

Is there a good, (a bit clearer), video or article on how to simply download the Google Chrome code, and be able to totally edit it, on my computer, without all the depot tools etc?

What is the need for the depot_tools and/or cygwin etc?

like image 698
H Bellamy Avatar asked Dec 01 '11 17:12

H Bellamy


People also ask

Can I hide source code of website?

You cannot totally hide the page source - this is not possible. Nothing is secure enough on the Internet. In any case, you can encrypt it and set a password. You can utilise this link - it will encrypt your HTML page with a password.

Is Chrome fully open source?

Unlike Chromium, Chrome is not open-source, so its binaries are licensed as freeware under the Google Chrome Terms of Service.

Can Google close Chromium source?

Google takes the code from chromium project and makes closed source Chrome OS and Chrome browser. It's a one way route. You can take an open source project and add your proprietary things and give it away as closed source.


1 Answers

If you want to to get it, try this link (warning: it's a 256 MB file).
This is an archive that you can extract once it's on your computer (use e.g. tar or 7zip or some other decompression software).

What is the need for the depot_tools and/or cygwin etc?

These tools will allow you to keep the source code on your computer up to date without downloading a full 256 MB file every time. This is helpful because many open source projects are updated very frequently, and you don't want to download 256 MB every day (or hour) when it's really only (relatively) small changes you need to get.


The main Chromium project is located at https://www.chromium.org/.

The source code is available at https://chromium.googlesource.com/ and can be searched at https://cs.chromium.org/.

Instructions for contributing can be found at https://www.chromium.org/developers.

like image 76
aganders3 Avatar answered Sep 23 '22 07:09

aganders3