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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 { | |
113 # Pull clang if needed or requested via GYP_DEFINES. | 106 # Pull clang if needed or requested via GYP_DEFINES. |
114 # Note: On Win, this should run after win_toolchain, as it may use it. | 107 # Note: On Win, this should run after win_toolchain, as it may use it. |
115 'name': 'clang', | 108 'name': 'clang', |
116 'pattern': '.', | 109 'pattern': '.', |
117 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], | 110 'action': ['python', 'v8/tools/clang/scripts/update.py', '--if-needed'], |
118 }, | 111 }, |
119 { | 112 { |
120 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 113 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
121 "pattern": ".", | 114 "pattern": ".", |
122 "action": ["python", "v8/build/gyp_v8"], | 115 "action": ["python", "v8/build/gyp_v8"], |
123 }, | 116 }, |
124 ] | 117 ] |
OLD | NEW |