OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 # TODO(jochen): These will need to be user-settable to support standalone V8 | 5 # TODO(jochen): These will need to be user-settable to support standalone V8 |
6 # builds. | 6 # builds. |
7 v8_compress_startup_data = "off" | 7 v8_compress_startup_data = "off" |
8 v8_deprecation_warnings = false | 8 v8_deprecation_warnings = false |
9 v8_enable_disassembler = false | 9 v8_enable_disassembler = false |
10 v8_enable_gdbjit = false | 10 v8_enable_gdbjit = false |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 | 185 |
186 # The script depends on this other script, this rule causes a rebuild if it | 186 # The script depends on this other script, this rule causes a rebuild if it |
187 # changes. | 187 # changes. |
188 source_prereqs = [ "tools/jsmin.py" ] | 188 source_prereqs = [ "tools/jsmin.py" ] |
189 | 189 |
190 sources = [ | 190 sources = [ |
191 "src/runtime.js", | 191 "src/runtime.js", |
192 "src/v8natives.js", | 192 "src/v8natives.js", |
193 "src/array.js", | 193 "src/array.js", |
194 "src/string.js", | 194 "src/string.js", |
| 195 "src/symbol.js", |
195 "src/uri.js", | 196 "src/uri.js", |
196 "src/math.js", | 197 "src/math.js", |
197 "src/messages.js", | 198 "src/messages.js", |
198 "src/apinatives.js", | 199 "src/apinatives.js", |
199 "src/debug-debugger.js", | 200 "src/debug-debugger.js", |
200 "src/mirror-debugger.js", | 201 "src/mirror-debugger.js", |
201 "src/liveedit-debugger.js", | 202 "src/liveedit-debugger.js", |
202 "src/date.js", | 203 "src/date.js", |
203 "src/json.js", | 204 "src/json.js", |
204 "src/regexp.js", | 205 "src/regexp.js", |
205 "src/arraybuffer.js", | 206 "src/arraybuffer.js", |
206 "src/typedarray.js", | 207 "src/typedarray.js", |
| 208 "src/collection.js", |
| 209 "src/collection-iterator.js", |
207 "src/weak_collection.js", | 210 "src/weak_collection.js", |
208 "src/promise.js", | 211 "src/promise.js", |
209 "src/object-observe.js", | 212 "src/object-observe.js", |
210 "src/macros.py", | 213 "src/macros.py", |
211 ] | 214 ] |
212 | 215 |
213 outputs = [ | 216 outputs = [ |
214 "$target_gen_dir/libraries.cc" | 217 "$target_gen_dir/libraries.cc" |
215 ] | 218 ] |
216 | 219 |
(...skipping 20 matching lines...) Expand all Loading... |
237 visibility = ":*" # Only targets in this file can depend on this. | 240 visibility = ":*" # Only targets in this file can depend on this. |
238 | 241 |
239 script = "tools/js2c.py" | 242 script = "tools/js2c.py" |
240 | 243 |
241 # The script depends on this other script, this rule causes a rebuild if it | 244 # The script depends on this other script, this rule causes a rebuild if it |
242 # changes. | 245 # changes. |
243 source_prereqs = [ "tools/jsmin.py" ] | 246 source_prereqs = [ "tools/jsmin.py" ] |
244 | 247 |
245 sources = [ | 248 sources = [ |
246 "src/macros.py", | 249 "src/macros.py", |
247 "src/symbol.js", | |
248 "src/proxy.js", | 250 "src/proxy.js", |
249 "src/collection.js", | |
250 "src/collection-iterator.js", | |
251 "src/generator.js", | 251 "src/generator.js", |
252 "src/array-iterator.js", | 252 "src/array-iterator.js", |
253 "src/harmony-string.js", | 253 "src/harmony-string.js", |
254 "src/harmony-array.js", | 254 "src/harmony-array.js", |
255 ] | 255 ] |
256 | 256 |
257 outputs = [ | 257 outputs = [ |
258 "$target_gen_dir/experimental-libraries.cc" | 258 "$target_gen_dir/experimental-libraries.cc" |
259 ] | 259 ] |
260 | 260 |
(...skipping 1024 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1285 deps = [ | 1285 deps = [ |
1286 ":v8_base", | 1286 ":v8_base", |
1287 ":v8_nosnapshot", | 1287 ":v8_nosnapshot", |
1288 ] | 1288 ] |
1289 } | 1289 } |
1290 | 1290 |
1291 direct_dependent_configs = [ ":external_config" ] | 1291 direct_dependent_configs = [ ":external_config" ] |
1292 } | 1292 } |
1293 | 1293 |
1294 } | 1294 } |
OLD | NEW |