Hi, I am new to chromium.
fetch --nohooks chromium --nosvn=True # as I am not a committer
./build/install-build-deps.sh
gclient sync
in the src directory (I've checkout'ed), I do 'gclient sync --revision src@1000', but the return is: 'Checked out revision 31256.'
On the link, I see "Using the last known good revision (LKGR)", so I think that if safesync_url is the problem, it makes gclient ignores --revision options, so I delete the 'safesync_url' from '.gclient' file, the content of '.gclient' becomes
1 solutions = [
2 { "name" : "src",
3 "url" : "http://src.chromium.org/svn/trunk/src",
4 "deps_file" : "DEPS",
5 "managed" : True,
6 "custom_deps" : {
7 },
8 },
9 ]
10 cache_dir = None
And, I do 'gclient sync --revision src@1000' again, but result is still the same.
So, What would be the problem?, this is really annoying.