you can open X:\ depot _tools\bootstrap\win\get_file.js, X is the disc
which you install the depot tool.
you can find flowing codes:
try {
xml_http = new ActiveXObject("MSXML2.ServerXMLHTTP");
} catch (e) {
WScript.StdOut.WriteLine("[-] XMLHTTP " + new Number
(e.number).toHex() +
": Cannot create Active-X object (" + e.description) + ").";
WScript.Quit(1);
}
try {
xml_http.open("GET", url, false);
} catch (e) {
WScript.StdOut.WriteLine("[-] XMLHTTP " + new Number
(e.number).toHex() +
": invalid URL.");
WScript.Quit(1);
}
you can change it to :
try {
xml_http = new ActiveXObject("MSXML2. ServerXMLHTTP.5.0 ");
} catch (e) {
WScript.StdOut.WriteLine("[-] XMLHTTP " + new Number
(e.number).toHex() +
": Cannot create Active-X object (" + e.description) + ").";
WScript.Quit(1);
}
try {
xml_http.setProxy(2, proxyIP:Port);
xml_http.open("GET", url, false);
xml_http. setProxyCredentials(username,pwd);
} catch (e) {
WScript.StdOut.WriteLine("[-] XMLHTTP " + new Number
(e.number).toHex() +
": invalid URL.");
WScript.Quit(1);
}
On 12月3日, 下午6时37分, Yunan He <[email protected]> wrote:
> Hi, I met problem in building chromium. I can not use gclient to check
> out the source code and it seems I need to set proxy. Could you please
> share your experience for this issue? I am using Windows XP.
>
> Thanks.
> Yunan
--
Chromium Discussion mailing list: [email protected]
View archives, change email options, or unsubscribe:
http://groups.google.com/group/chromium-discuss