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 02:37:27
We should do the reference builds for all platform
prasadv
2014/04/25 17:09:33
Done.
| |
45 "src/third_party/WebKit/LayoutTests": None,} | |
tonyg
2014/04/25 02:37:27
Let's also add this one:
src/third_party/valgrind
prasadv
2014/04/25 17:09:33
Do you mean "src/tools/valgrind", because I didn't
tonyg
2014/04/25 17:16:21
Oops, yes :)
| |
44 | 46 |
45 GCLIENT_SPEC_DATA = [ | 47 GCLIENT_SPEC_DATA = [ |
46 { "name" : "src", | 48 { "name" : "src", |
47 "url" : "https://chromium.googlesource.com/chromium/src.git", | 49 "url" : "https://chromium.googlesource.com/chromium/src.git", |
48 "deps_file" : ".DEPS.git", | 50 "deps_file" : ".DEPS.git", |
49 "managed" : True, | 51 "managed" : True, |
50 "custom_deps" : {}, | 52 "custom_deps" : {}, |
51 "safesync_url": "", | 53 "safesync_url": "", |
52 }, | 54 }, |
53 ] | 55 ] |
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
504 | 506 |
505 Args: | 507 Args: |
506 opts: The options parsed from the command line through parse_args(). | 508 opts: The options parsed from the command line through parse_args(). |
507 custom_deps: A dictionary of additional dependencies to add to .gclient. | 509 custom_deps: A dictionary of additional dependencies to add to .gclient. |
508 """ | 510 """ |
509 if not CreateAndChangeToSourceDirectory(opts.working_directory): | 511 if not CreateAndChangeToSourceDirectory(opts.working_directory): |
510 raise RuntimeError('Could not create bisect directory.') | 512 raise RuntimeError('Could not create bisect directory.') |
511 | 513 |
512 if not SetupGitDepot(opts, custom_deps): | 514 if not SetupGitDepot(opts, custom_deps): |
513 raise RuntimeError('Failed to grab source.') | 515 raise RuntimeError('Failed to grab source.') |
OLD | NEW |