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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 "name": "clang_format_linux", | 86 "name": "clang_format_linux", |
87 "pattern": ".", | 87 "pattern": ".", |
88 "action": [ "download_from_google_storage", | 88 "action": [ "download_from_google_storage", |
89 "--no_resume", | 89 "--no_resume", |
90 "--platform=linux*", | 90 "--platform=linux*", |
91 "--no_auth", | 91 "--no_auth", |
92 "--bucket", "chromium-clang-format", | 92 "--bucket", "chromium-clang-format", |
93 "-s", "v8/buildtools/linux64/clang-format.sha1", | 93 "-s", "v8/buildtools/linux64/clang-format.sha1", |
94 ], | 94 ], |
95 }, | 95 }, |
| 96 # Pull luci-go binaries (isolate, swarming) using checked-in hashes. |
| 97 { |
| 98 'name': 'luci-go_win', |
| 99 'pattern': '.', |
| 100 'action': [ 'download_from_google_storage', |
| 101 '--no_resume', |
| 102 '--platform=win32', |
| 103 '--no_auth', |
| 104 '--bucket', 'chromium-luci', |
| 105 '-d', 'v8/tools/luci-go/win64', |
| 106 ], |
| 107 }, |
| 108 { |
| 109 'name': 'luci-go_mac', |
| 110 'pattern': '.', |
| 111 'action': [ 'download_from_google_storage', |
| 112 '--no_resume', |
| 113 '--platform=darwin', |
| 114 '--no_auth', |
| 115 '--bucket', 'chromium-luci', |
| 116 '-d', 'v8/tools/luci-go/mac64', |
| 117 ], |
| 118 }, |
| 119 { |
| 120 'name': 'luci-go_linux', |
| 121 'pattern': '.', |
| 122 'action': [ 'download_from_google_storage', |
| 123 '--no_resume', |
| 124 '--platform=linux*', |
| 125 '--no_auth', |
| 126 '--bucket', 'chromium-luci', |
| 127 '-d', 'v8/tools/luci-go/linux64', |
| 128 ], |
| 129 }, |
96 # Pull binutils for linux, enabled debug fission for faster linking / | 130 # Pull binutils for linux, enabled debug fission for faster linking / |
97 # debugging when used with clang on Ubuntu Precise. | 131 # debugging when used with clang on Ubuntu Precise. |
98 # https://code.google.com/p/chromium/issues/detail?id=352046 | 132 # https://code.google.com/p/chromium/issues/detail?id=352046 |
99 { | 133 { |
100 'name': 'binutils', | 134 'name': 'binutils', |
101 'pattern': 'v8/third_party/binutils', | 135 'pattern': 'v8/third_party/binutils', |
102 'action': [ | 136 'action': [ |
103 'python', | 137 'python', |
104 'v8/third_party/binutils/download.py', | 138 'v8/third_party/binutils/download.py', |
105 ], | 139 ], |
(...skipping 11 matching lines...) Expand all Loading... |
117 'name': 'clang', | 151 'name': 'clang', |
118 'pattern': '.', | 152 'pattern': '.', |
119 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 153 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
120 }, | 154 }, |
121 { | 155 { |
122 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 156 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
123 "pattern": ".", | 157 "pattern": ".", |
124 "action": ["python", "v8/build/gyp_v8"], | 158 "action": ["python", "v8/build/gyp_v8"], |
125 }, | 159 }, |
126 ] | 160 ] |
OLD | NEW |