Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(324)

Side by Side Diff: DEPS

Issue 1330623002: Reland Automatically download gold plugin for cfi builds. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | build/download_gold_plugin.py » ('j') | build/download_gold_plugin.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 # https://code.google.com/p/chromium/issues/detail?id=352046 96 # https://code.google.com/p/chromium/issues/detail?id=352046
97 { 97 {
98 'name': 'binutils', 98 'name': 'binutils',
99 'pattern': 'v8/third_party/binutils', 99 'pattern': 'v8/third_party/binutils',
100 'action': [ 100 'action': [
101 'python', 101 'python',
102 'v8/third_party/binutils/download.py', 102 'v8/third_party/binutils/download.py',
103 ], 103 ],
104 }, 104 },
105 { 105 {
106 # Pull gold plugin if needed or requested via GYP_DEFINES.
107 # Note: This must run before the clang update.
108 'name': 'gold_plugin',
109 'pattern': '.',
110 'action': ['python', 'v8/build/download_gold_plugin.py'],
111 },
112 {
106 # Pull clang if needed or requested via GYP_DEFINES. 113 # Pull clang if needed or requested via GYP_DEFINES.
107 # Note: On Win, this should run after win_toolchain, as it may use it. 114 # Note: On Win, this should run after win_toolchain, as it may use it.
108 'name': 'clang', 115 'name': 'clang',
109 'pattern': '.', 116 'pattern': '.',
110 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], 117 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'],
111 }, 118 },
112 { 119 {
113 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 120 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
114 "pattern": ".", 121 "pattern": ".",
115 "action": ["python", "v8/build/gyp_v8"], 122 "action": ["python", "v8/build/gyp_v8"],
116 }, 123 },
117 ] 124 ]
OLDNEW
« no previous file with comments | « no previous file | build/download_gold_plugin.py » ('j') | build/download_gold_plugin.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698