OLD | NEW |
---|---|
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 """Set of operations/utilities related to checking out the depot, and | 5 """Set of operations/utilities related to checking out the depot, and |
6 outputting annotations on the buildbot waterfall. These are intended to be | 6 outputting annotations on the buildbot waterfall. These are intended to be |
7 used by the bisection scripts.""" | 7 used by the bisection scripts.""" |
8 | 8 |
9 import errno | 9 import errno |
10 import imp | 10 import imp |
(...skipping 22 matching lines...) Expand all Loading... | |
33 "https://chrome-internal.googlesource.com/" | 33 "https://chrome-internal.googlesource.com/" |
34 "chrome/deps/adobe/flash/binaries/ppapi/mac/.git", | 34 "chrome/deps/adobe/flash/binaries/ppapi/mac/.git", |
35 "src/third_party/adobe/flash/binaries/ppapi/mac_64": | 35 "src/third_party/adobe/flash/binaries/ppapi/mac_64": |
36 "https://chrome-internal.googlesource.com/" | 36 "https://chrome-internal.googlesource.com/" |
37 "chrome/deps/adobe/flash/binaries/ppapi/mac_64/.git", | 37 "chrome/deps/adobe/flash/binaries/ppapi/mac_64/.git", |
38 "src/third_party/adobe/flash/binaries/ppapi/win": | 38 "src/third_party/adobe/flash/binaries/ppapi/win": |
39 "https://chrome-internal.googlesource.com/" | 39 "https://chrome-internal.googlesource.com/" |
40 "chrome/deps/adobe/flash/binaries/ppapi/win/.git", | 40 "chrome/deps/adobe/flash/binaries/ppapi/win/.git", |
41 "src/third_party/adobe/flash/binaries/ppapi/win_x64": | 41 "src/third_party/adobe/flash/binaries/ppapi/win_x64": |
42 "https://chrome-internal.googlesource.com/" | 42 "https://chrome-internal.googlesource.com/" |
43 "chrome/deps/adobe/flash/binaries/ppapi/win_x64/.git",} | 43 "chrome/deps/adobe/flash/binaries/ppapi/win_x64/.git", |
44 "src/chrome/tools/test/reference_build/chrome_win": None, | |
tonyg
2014/04/25 17:16:21
There's also a 64-bit variant of this folder, righ
| |
45 "src/chrome/tools/test/reference_build/chrome_mac": None, | |
46 "src/chrome/tools/test/reference_build/chrome_linux": None, | |
47 "src/third_party/WebKit/LayoutTests": None, | |
48 "src/tools/valgrind": None,} | |
44 | 49 |
45 GCLIENT_SPEC_DATA = [ | 50 GCLIENT_SPEC_DATA = [ |
46 { "name" : "src", | 51 { "name" : "src", |
47 "url" : "https://chromium.googlesource.com/chromium/src.git", | 52 "url" : "https://chromium.googlesource.com/chromium/src.git", |
48 "deps_file" : ".DEPS.git", | 53 "deps_file" : ".DEPS.git", |
49 "managed" : True, | 54 "managed" : True, |
50 "custom_deps" : {}, | 55 "custom_deps" : {}, |
51 "safesync_url": "", | 56 "safesync_url": "", |
52 }, | 57 }, |
53 ] | 58 ] |
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
504 | 509 |
505 Args: | 510 Args: |
506 opts: The options parsed from the command line through parse_args(). | 511 opts: The options parsed from the command line through parse_args(). |
507 custom_deps: A dictionary of additional dependencies to add to .gclient. | 512 custom_deps: A dictionary of additional dependencies to add to .gclient. |
508 """ | 513 """ |
509 if not CreateAndChangeToSourceDirectory(opts.working_directory): | 514 if not CreateAndChangeToSourceDirectory(opts.working_directory): |
510 raise RuntimeError('Could not create bisect directory.') | 515 raise RuntimeError('Could not create bisect directory.') |
511 | 516 |
512 if not SetupGitDepot(opts, custom_deps): | 517 if not SetupGitDepot(opts, custom_deps): |
513 raise RuntimeError('Failed to grab source.') | 518 raise RuntimeError('Failed to grab source.') |
OLD | NEW |