OLD | NEW |
1 # Note: The buildbots evaluate this file with CWD set to the parent | 1 # Note: The buildbots evaluate this file with CWD set to the parent |
2 # directory and assume that the root of the checkout is in ./v8/, so | 2 # directory and assume that the root of the checkout is in ./v8/, so |
3 # all paths in here must match this assumption. | 3 # all paths in here must match this assumption. |
4 | 4 |
5 vars = { | 5 vars = { |
6 "git_url": "https://chromium.googlesource.com", | 6 "git_url": "https://chromium.googlesource.com", |
7 } | 7 } |
8 | 8 |
9 deps = { | 9 deps = { |
10 "v8/build/gyp": | 10 "v8/build/gyp": |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 "name": "clang_format_linux", | 73 "name": "clang_format_linux", |
74 "pattern": ".", | 74 "pattern": ".", |
75 "action": [ "download_from_google_storage", | 75 "action": [ "download_from_google_storage", |
76 "--no_resume", | 76 "--no_resume", |
77 "--platform=linux*", | 77 "--platform=linux*", |
78 "--no_auth", | 78 "--no_auth", |
79 "--bucket", "chromium-clang-format", | 79 "--bucket", "chromium-clang-format", |
80 "-s", "v8/buildtools/linux64/clang-format.sha1", | 80 "-s", "v8/buildtools/linux64/clang-format.sha1", |
81 ], | 81 ], |
82 }, | 82 }, |
| 83 # Pull binutils for linux, enabled debug fission for faster linking / |
| 84 # debugging when used with clang on Ubuntu Precise. |
| 85 # https://code.google.com/p/chromium/issues/detail?id=352046 |
| 86 { |
| 87 'name': 'binutils', |
| 88 'pattern': 'v8/third_party/binutils', |
| 89 'action': [ |
| 90 'python', |
| 91 'v8/third_party/binutils/download.py', |
| 92 ], |
| 93 }, |
83 { | 94 { |
84 # Pull clang if needed or requested via GYP_DEFINES. | 95 # Pull clang if needed or requested via GYP_DEFINES. |
85 # Note: On Win, this should run after win_toolchain, as it may use it. | 96 # Note: On Win, this should run after win_toolchain, as it may use it. |
86 'name': 'clang', | 97 'name': 'clang', |
87 'pattern': '.', | 98 'pattern': '.', |
88 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 99 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
89 }, | 100 }, |
90 { | 101 { |
91 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 102 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
92 "pattern": ".", | 103 "pattern": ".", |
93 "action": ["python", "v8/build/gyp_v8"], | 104 "action": ["python", "v8/build/gyp_v8"], |
94 }, | 105 }, |
95 ] | 106 ] |
OLD | NEW |