--Thanks!
--
Chromium Developers mailing list: chromi...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-dev
---
You received this message because you are subscribed to the Google Groups "Chromium-dev" group.
To view this discussion on the web visit https://groups.google.com/a/chromium.org/d/msgid/chromium-dev/0c60963e-fc7f-40ce-856a-85b94e6179a8%40chromium.org.
On Tue, 23 May 2017 at 18:45 Roman <ro...@cybellum.com> wrote:Hello,I would like to have my own chromium repository on "visual studio team services", that will be synced with the chromium at https://chromium.googlesource.com/ (a.k.a to fork the Chromium project).I know that the question might be too general, but what is the recommended approach for that? all the documentation that I saw shows how to clone the repo, but not how to fork it..In addition, the changes that I want to make are only in the V8 module, however I want that when I sync in the first time on a new machine, I'll get everything I need to run Chromium with the changes that I've made to V8.So is it the best practice to work against the whole Chromium solution, or maybe there is a better way for doing that?Search that page for "custom_deps".v8 is contained in its own repo. If you just want to replace V8 but keep the rest of the Chromium source the same, you just need to:
- Fork the V8 repo.
- Edit your .gclient file in Chromium, add a custom_deps rule for v8, pointing to your forked repo.
- Run gclient sync.
This will make the src/v8 directory in your Chromium checkout contain a git clone of your v8 repo, while the rest remains the same, and gclient sync keeps in sync.When you make changes to your v8 repo, you will have to run gclient sync each time to get Chromium to see the changes.
I'm not a V8 developer but I remember there being some grumbling about this workflow; not sure if the V8 team has a better workflow for pushing changes into their local Chromium build.
----Thanks!
--
Chromium Developers mailing list: chromi...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-dev
---
You received this message because you are subscribed to the Google Groups "Chromium-dev" group.
To view this discussion on the web visit https://groups.google.com/a/chromium.org/d/msgid/chromium-dev/0c60963e-fc7f-40ce-856a-85b94e6179a8%40chromium.org.
--
Chromium Developers mailing list: chromi...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-dev
---
You received this message because you are subscribed to the Google Groups "Chromium-dev" group.
To view this discussion on the web visit https://groups.google.com/a/chromium.org/d/msgid/chromium-dev/CAHqYdcb%3D676XsfzteUtG_o4rVrUdHPiqpYrQ2Ni7PzCScEQyhA%40mail.gmail.com.
Is there an example how the custom_deps should look like? Is it like that?solutions = [{"managed": False,"name": "src","deps_file": ".DEPS.git","custom_deps" : {"v8" : "<my_repo>"}}]