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 import("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
6 import("//build/config/arm.gni") | 6 import("//build/config/arm.gni") |
7 import("//build/config/mips.gni") | 7 import("//build/config/mips.gni") |
8 import("//build/config/sanitizers/sanitizers.gni") | 8 import("//build/config/sanitizers/sanitizers.gni") |
9 | 9 |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 defines += [ "V8_TARGET_ARCH_ARM64" ] | 175 defines += [ "V8_TARGET_ARCH_ARM64" ] |
176 } | 176 } |
177 if (v8_target_arch == "mipsel") { | 177 if (v8_target_arch == "mipsel") { |
178 defines += [ "V8_TARGET_ARCH_MIPS" ] | 178 defines += [ "V8_TARGET_ARCH_MIPS" ] |
179 } | 179 } |
180 if (v8_target_arch == "mips64el") { | 180 if (v8_target_arch == "mips64el") { |
181 defines += [ "V8_TARGET_ARCH_MIPS64" ] | 181 defines += [ "V8_TARGET_ARCH_MIPS64" ] |
182 } | 182 } |
183 if (v8_target_arch == "s390") { | 183 if (v8_target_arch == "s390") { |
184 defines += [ "V8_TARGET_ARCH_S390" ] | 184 defines += [ "V8_TARGET_ARCH_S390" ] |
185 } | 185 } |
186 if (v8_target_arch == "s390x") { | 186 if (v8_target_arch == "s390x") { |
187 defines += [ | 187 defines += [ |
188 "V8_TARGET_ARCH_S390", | 188 "V8_TARGET_ARCH_S390", |
189 "V8_TARGET_ARCH_S390X", | 189 "V8_TARGET_ARCH_S390X", |
190 ] | 190 ] |
191 } | 191 } |
192 if (v8_target_arch == "x86") { | 192 if (v8_target_arch == "x86") { |
193 defines += [ "V8_TARGET_ARCH_IA32" ] | 193 defines += [ "V8_TARGET_ARCH_IA32" ] |
194 } | 194 } |
195 if (v8_target_arch == "x64") { | 195 if (v8_target_arch == "x64") { |
196 defines += [ "V8_TARGET_ARCH_X64" ] | 196 defines += [ "V8_TARGET_ARCH_X64" ] |
197 } | 197 } |
198 | 198 |
199 if (is_win) { | 199 if (is_win) { |
200 defines += [ "WIN32" ] | 200 defines += [ "WIN32" ] |
201 # TODO(jochen): Support v8_enable_prof. | 201 # TODO(jochen): Support v8_enable_prof. |
202 } | 202 } |
203 | 203 |
204 # TODO(jochen): Add support for compiling with simulators. | 204 # TODO(jochen): Add support for compiling with simulators. |
205 | 205 |
206 if (is_debug) { | 206 if (is_debug) { |
207 # TODO(jochen): Add support for different debug optimization levels. | 207 # TODO(jochen): Add support for different debug optimization levels. |
208 defines += [ | 208 defines += [ |
(...skipping 11 matching lines...) Expand all Loading... |
220 # Actions | 220 # Actions |
221 # | 221 # |
222 | 222 |
223 action("js2c") { | 223 action("js2c") { |
224 visibility = [ ":*" ] # Only targets in this file can depend on this. | 224 visibility = [ ":*" ] # Only targets in this file can depend on this. |
225 | 225 |
226 script = "tools/js2c.py" | 226 script = "tools/js2c.py" |
227 | 227 |
228 # The script depends on this other script, this rule causes a rebuild if it | 228 # The script depends on this other script, this rule causes a rebuild if it |
229 # changes. | 229 # changes. |
230 inputs = [ "tools/jsmin.py" ] | 230 inputs = [ |
| 231 "tools/jsmin.py", |
| 232 ] |
231 | 233 |
232 sources = [ | 234 sources = [ |
233 "src/js/macros.py", | |
234 "src/messages.h", | |
235 "src/js/prologue.js", | |
236 "src/js/runtime.js", | |
237 "src/js/v8natives.js", | |
238 "src/js/symbol.js", | |
239 "src/js/array.js", | |
240 "src/js/string.js", | |
241 "src/js/uri.js", | |
242 "src/js/math.js", | |
243 "src/third_party/fdlibm/fdlibm.js", | |
244 "src/js/regexp.js", | |
245 "src/js/arraybuffer.js", | |
246 "src/js/typedarray.js", | |
247 "src/js/iterator-prototype.js", | |
248 "src/js/generator.js", | |
249 "src/js/object-observe.js", | |
250 "src/js/collection.js", | |
251 "src/js/weak-collection.js", | |
252 "src/js/collection-iterator.js", | |
253 "src/js/promise.js", | |
254 "src/js/messages.js", | |
255 "src/js/json.js", | |
256 "src/js/array-iterator.js", | |
257 "src/js/string-iterator.js", | |
258 "src/js/templates.js", | |
259 "src/js/spread.js", | |
260 "src/debug/mirrors.js", | |
261 "src/debug/debug.js", | 235 "src/debug/debug.js", |
262 "src/debug/liveedit.js", | 236 "src/debug/liveedit.js", |
| 237 "src/debug/mirrors.js", |
| 238 "src/js/array-iterator.js", |
| 239 "src/js/array.js", |
| 240 "src/js/arraybuffer.js", |
| 241 "src/js/collection-iterator.js", |
| 242 "src/js/collection.js", |
| 243 "src/js/generator.js", |
| 244 "src/js/iterator-prototype.js", |
| 245 "src/js/json.js", |
| 246 "src/js/macros.py", |
| 247 "src/js/math.js", |
| 248 "src/js/messages.js", |
| 249 "src/js/object-observe.js", |
| 250 "src/js/prologue.js", |
| 251 "src/js/promise.js", |
| 252 "src/js/regexp.js", |
| 253 "src/js/runtime.js", |
| 254 "src/js/spread.js", |
| 255 "src/js/string-iterator.js", |
| 256 "src/js/string.js", |
| 257 "src/js/symbol.js", |
| 258 "src/js/templates.js", |
| 259 "src/js/typedarray.js", |
| 260 "src/js/uri.js", |
| 261 "src/js/v8natives.js", |
| 262 "src/js/weak-collection.js", |
| 263 "src/messages.h", |
| 264 "src/third_party/fdlibm/fdlibm.js", |
263 ] | 265 ] |
264 | 266 |
265 outputs = [ | 267 outputs = [ |
266 "$target_gen_dir/libraries.cc", | 268 "$target_gen_dir/libraries.cc", |
267 ] | 269 ] |
268 | 270 |
269 if (v8_enable_i18n_support) { | 271 if (v8_enable_i18n_support) { |
270 sources += [ "src/js/i18n.js" ] | 272 sources += [ "src/js/i18n.js" ] |
271 } | 273 } |
272 | 274 |
(...skipping 11 matching lines...) Expand all Loading... |
284 } | 286 } |
285 } | 287 } |
286 | 288 |
287 action("js2c_experimental") { | 289 action("js2c_experimental") { |
288 visibility = [ ":*" ] # Only targets in this file can depend on this. | 290 visibility = [ ":*" ] # Only targets in this file can depend on this. |
289 | 291 |
290 script = "tools/js2c.py" | 292 script = "tools/js2c.py" |
291 | 293 |
292 # The script depends on this other script, this rule causes a rebuild if it | 294 # The script depends on this other script, this rule causes a rebuild if it |
293 # changes. | 295 # changes. |
294 inputs = [ "tools/jsmin.py" ] | 296 inputs = [ |
| 297 "tools/jsmin.py", |
| 298 ] |
295 | 299 |
296 sources = [ | 300 sources = [ |
297 "src/js/macros.py", | |
298 "src/messages.h", | |
299 "src/js/proxy.js", | |
300 "src/js/generator.js", | 301 "src/js/generator.js", |
301 "src/js/harmony-atomics.js", | 302 "src/js/harmony-atomics.js", |
| 303 "src/js/harmony-object-observe.js", |
| 304 "src/js/harmony-reflect.js", |
302 "src/js/harmony-regexp.js", | 305 "src/js/harmony-regexp.js", |
303 "src/js/harmony-reflect.js", | |
304 "src/js/harmony-object-observe.js", | |
305 "src/js/harmony-sharedarraybuffer.js", | 306 "src/js/harmony-sharedarraybuffer.js", |
306 "src/js/harmony-simd.js", | 307 "src/js/harmony-simd.js", |
307 "src/js/harmony-species.js", | 308 "src/js/harmony-species.js", |
308 "src/js/harmony-unicode-regexps.js", | 309 "src/js/harmony-unicode-regexps.js", |
309 "src/js/promise-extra.js" | 310 "src/js/macros.py", |
| 311 "src/js/promise-extra.js", |
| 312 "src/js/proxy.js", |
| 313 "src/messages.h", |
310 ] | 314 ] |
311 | 315 |
312 outputs = [ | 316 outputs = [ |
313 "$target_gen_dir/experimental-libraries.cc", | 317 "$target_gen_dir/experimental-libraries.cc", |
314 ] | 318 ] |
315 | 319 |
316 args = [ | 320 args = [ |
317 rebase_path("$target_gen_dir/experimental-libraries.cc", | 321 rebase_path("$target_gen_dir/experimental-libraries.cc", |
318 root_build_dir), | 322 root_build_dir), |
319 "EXPERIMENTAL", | 323 "EXPERIMENTAL", |
320 ] + rebase_path(sources, root_build_dir) | 324 ] + rebase_path(sources, root_build_dir) |
321 | 325 |
322 if (v8_use_external_startup_data) { | 326 if (v8_use_external_startup_data) { |
323 outputs += [ "$target_gen_dir/libraries_experimental.bin" ] | 327 outputs += [ "$target_gen_dir/libraries_experimental.bin" ] |
324 args += [ | 328 args += [ |
325 "--startup_blob", | 329 "--startup_blob", |
326 rebase_path("$target_gen_dir/libraries_experimental.bin", root_build_dir), | 330 rebase_path("$target_gen_dir/libraries_experimental.bin", root_build_dir), |
327 ] | 331 ] |
328 } | 332 } |
329 } | 333 } |
330 | 334 |
331 action("js2c_extras") { | 335 action("js2c_extras") { |
332 visibility = [ ":*" ] # Only targets in this file can depend on this. | 336 visibility = [ ":*" ] # Only targets in this file can depend on this. |
333 | 337 |
334 script = "tools/js2c.py" | 338 script = "tools/js2c.py" |
335 | 339 |
336 # The script depends on this other script, this rule causes a rebuild if it | 340 # The script depends on this other script, this rule causes a rebuild if it |
337 # changes. | 341 # changes. |
338 inputs = [ "tools/jsmin.py" ] | 342 inputs = [ |
| 343 "tools/jsmin.py", |
| 344 ] |
339 | 345 |
340 sources = v8_extra_library_files | 346 sources = v8_extra_library_files |
341 | 347 |
342 outputs = [ | 348 outputs = [ |
343 "$target_gen_dir/extras-libraries.cc", | 349 "$target_gen_dir/extras-libraries.cc", |
344 ] | 350 ] |
345 | 351 |
346 args = [ | 352 args = [ |
347 rebase_path("$target_gen_dir/extras-libraries.cc", | 353 rebase_path("$target_gen_dir/extras-libraries.cc", root_build_dir), |
348 root_build_dir), | |
349 "EXTRAS", | 354 "EXTRAS", |
350 ] + rebase_path(sources, root_build_dir) | 355 ] + rebase_path(sources, root_build_dir) |
351 | 356 |
352 if (v8_use_external_startup_data) { | 357 if (v8_use_external_startup_data) { |
353 outputs += [ "$target_gen_dir/libraries_extras.bin" ] | 358 outputs += [ "$target_gen_dir/libraries_extras.bin" ] |
354 args += [ | 359 args += [ |
355 "--startup_blob", | 360 "--startup_blob", |
356 rebase_path("$target_gen_dir/libraries_extras.bin", root_build_dir), | 361 rebase_path("$target_gen_dir/libraries_extras.bin", root_build_dir), |
357 ] | 362 ] |
358 } | 363 } |
359 } | 364 } |
360 | 365 |
361 action("js2c_experimental_extras") { | 366 action("js2c_experimental_extras") { |
362 visibility = [ ":*" ] # Only targets in this file can depend on this. | 367 visibility = [ ":*" ] # Only targets in this file can depend on this. |
363 | 368 |
364 script = "tools/js2c.py" | 369 script = "tools/js2c.py" |
365 | 370 |
366 # The script depends on this other script, this rule causes a rebuild if it | 371 # The script depends on this other script, this rule causes a rebuild if it |
367 # changes. | 372 # changes. |
368 inputs = [ "tools/jsmin.py" ] | 373 inputs = [ |
| 374 "tools/jsmin.py", |
| 375 ] |
369 | 376 |
370 sources = v8_experimental_extra_library_files | 377 sources = v8_experimental_extra_library_files |
371 | 378 |
372 outputs = [ | 379 outputs = [ |
373 "$target_gen_dir/experimental-extras-libraries.cc", | 380 "$target_gen_dir/experimental-extras-libraries.cc", |
374 ] | 381 ] |
375 | 382 |
376 args = [ | 383 args = [ |
377 rebase_path("$target_gen_dir/experimental-extras-libraries.cc", | 384 rebase_path("$target_gen_dir/experimental-extras-libraries.cc", |
378 root_build_dir), | 385 root_build_dir), |
379 "EXPERIMENTAL_EXTRAS", | 386 "EXPERIMENTAL_EXTRAS", |
380 ] + rebase_path(sources, root_build_dir) | 387 ] + rebase_path(sources, root_build_dir) |
381 | 388 |
382 if (v8_use_external_startup_data) { | 389 if (v8_use_external_startup_data) { |
383 outputs += [ "$target_gen_dir/libraries_experimental_extras.bin" ] | 390 outputs += [ "$target_gen_dir/libraries_experimental_extras.bin" ] |
384 args += [ | 391 args += [ |
385 "--startup_blob", | 392 "--startup_blob", |
386 rebase_path("$target_gen_dir/libraries_experimental_extras.bin", root_buil
d_dir), | 393 rebase_path("$target_gen_dir/libraries_experimental_extras.bin", |
| 394 root_build_dir), |
387 ] | 395 ] |
388 } | 396 } |
389 } | 397 } |
390 | 398 |
391 action("d8_js2c") { | 399 action("d8_js2c") { |
392 visibility = [ ":*" ] # Only targets in this file can depend on this. | 400 visibility = [ ":*" ] # Only targets in this file can depend on this. |
393 | 401 |
394 script = "tools/js2c.py" | 402 script = "tools/js2c.py" |
395 | 403 |
396 inputs = [ | 404 inputs = [ |
(...skipping 22 matching lines...) Expand all Loading... |
419 } | 427 } |
420 } | 428 } |
421 | 429 |
422 if (v8_use_external_startup_data) { | 430 if (v8_use_external_startup_data) { |
423 action("natives_blob") { | 431 action("natives_blob") { |
424 visibility = [ ":*" ] # Only targets in this file can depend on this. | 432 visibility = [ ":*" ] # Only targets in this file can depend on this. |
425 | 433 |
426 deps = [ | 434 deps = [ |
427 ":js2c", | 435 ":js2c", |
428 ":js2c_experimental", | 436 ":js2c_experimental", |
| 437 ":js2c_experimental_extras", |
429 ":js2c_extras", | 438 ":js2c_extras", |
430 ":js2c_experimental_extras", | |
431 ] | 439 ] |
432 | 440 |
433 sources = [ | 441 sources = [ |
434 "$target_gen_dir/libraries.bin", | 442 "$target_gen_dir/libraries.bin", |
435 "$target_gen_dir/libraries_experimental.bin", | 443 "$target_gen_dir/libraries_experimental.bin", |
| 444 "$target_gen_dir/libraries_experimental_extras.bin", |
436 "$target_gen_dir/libraries_extras.bin", | 445 "$target_gen_dir/libraries_extras.bin", |
437 "$target_gen_dir/libraries_experimental_extras.bin", | |
438 ] | 446 ] |
439 | 447 |
440 outputs = [ | 448 outputs = [ |
441 "$root_out_dir/natives_blob.bin", | 449 "$root_out_dir/natives_blob.bin", |
442 ] | 450 ] |
443 | 451 |
444 script = "tools/concatenate-files.py" | 452 script = "tools/concatenate-files.py" |
445 | 453 |
446 args = rebase_path(sources + outputs, root_build_dir) | 454 args = rebase_path(sources + outputs, root_build_dir) |
447 } | 455 } |
448 } | 456 } |
449 | 457 |
450 action("postmortem-metadata") { | 458 action("postmortem-metadata") { |
451 # Only targets in this file and the top-level visibility target can | 459 # Only targets in this file and the top-level visibility target can |
452 # depend on this. | 460 # depend on this. |
453 visibility = [ | 461 visibility = [ |
454 ":*", | 462 ":*", |
455 "//:gn_visibility", | 463 "//:gn_visibility", |
456 ] | 464 ] |
457 | 465 |
458 script = "tools/gen-postmortem-metadata.py" | 466 script = "tools/gen-postmortem-metadata.py" |
459 | 467 |
460 sources = [ | 468 sources = [ |
| 469 "src/objects-inl.h", |
461 "src/objects.h", | 470 "src/objects.h", |
462 "src/objects-inl.h", | |
463 ] | 471 ] |
464 | 472 |
465 outputs = [ | 473 outputs = [ |
466 "$target_gen_dir/debug-support.cc", | 474 "$target_gen_dir/debug-support.cc", |
467 ] | 475 ] |
468 | 476 |
469 args = rebase_path(outputs, root_build_dir) + | 477 args = rebase_path(outputs, root_build_dir) + |
470 rebase_path(sources, root_build_dir) | 478 rebase_path(sources, root_build_dir) |
471 } | 479 } |
472 | 480 |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
513 ############################################################################### | 521 ############################################################################### |
514 # Source Sets (aka static libraries) | 522 # Source Sets (aka static libraries) |
515 # | 523 # |
516 | 524 |
517 source_set("v8_nosnapshot") { | 525 source_set("v8_nosnapshot") { |
518 visibility = [ ":*" ] # Only targets in this file can depend on this. | 526 visibility = [ ":*" ] # Only targets in this file can depend on this. |
519 | 527 |
520 deps = [ | 528 deps = [ |
521 ":js2c", | 529 ":js2c", |
522 ":js2c_experimental", | 530 ":js2c_experimental", |
| 531 ":js2c_experimental_extras", |
523 ":js2c_extras", | 532 ":js2c_extras", |
524 ":js2c_experimental_extras", | |
525 ":v8_base", | 533 ":v8_base", |
526 ] | 534 ] |
527 | 535 |
528 sources = [ | 536 sources = [ |
529 "$target_gen_dir/libraries.cc", | 537 "$target_gen_dir/experimental-extras-libraries.cc", |
530 "$target_gen_dir/experimental-libraries.cc", | 538 "$target_gen_dir/experimental-libraries.cc", |
531 "$target_gen_dir/extras-libraries.cc", | 539 "$target_gen_dir/extras-libraries.cc", |
532 "$target_gen_dir/experimental-extras-libraries.cc", | 540 "$target_gen_dir/libraries.cc", |
533 "src/snapshot/snapshot-empty.cc", | 541 "src/snapshot/snapshot-empty.cc", |
534 ] | 542 ] |
535 | 543 |
536 configs -= [ "//build/config/compiler:chromium_code" ] | 544 configs -= [ "//build/config/compiler:chromium_code" ] |
537 configs += [ "//build/config/compiler:no_chromium_code" ] | 545 configs += [ "//build/config/compiler:no_chromium_code" ] |
538 configs += [ | 546 configs += [ |
539 ":internal_config", | 547 ":internal_config", |
540 ":features", | 548 ":features", |
541 ":toolchain", | 549 ":toolchain", |
542 ] | 550 ] |
543 } | 551 } |
544 | 552 |
545 source_set("v8_snapshot") { | 553 source_set("v8_snapshot") { |
546 # Only targets in this file and the top-level visibility target can | 554 # Only targets in this file and the top-level visibility target can |
547 # depend on this. | 555 # depend on this. |
548 visibility = [ | 556 visibility = [ |
549 ":*", | 557 ":*", |
550 "//:gn_visibility", | 558 "//:gn_visibility", |
551 ] | 559 ] |
552 | 560 |
553 deps = [ | 561 deps = [ |
554 ":js2c", | 562 ":js2c", |
555 ":js2c_experimental", | 563 ":js2c_experimental", |
| 564 ":js2c_experimental_extras", |
556 ":js2c_extras", | 565 ":js2c_extras", |
557 ":js2c_experimental_extras", | |
558 ":v8_base", | 566 ":v8_base", |
559 ] | 567 ] |
560 public_deps = [ | 568 public_deps = [ |
561 # This should be public so downstream targets can declare the snapshot | 569 # This should be public so downstream targets can declare the snapshot |
562 # output file as their inputs. | 570 # output file as their inputs. |
563 ":run_mksnapshot", | 571 ":run_mksnapshot", |
564 ] | 572 ] |
565 | 573 |
566 sources = [ | 574 sources = [ |
567 "$target_gen_dir/libraries.cc", | 575 "$target_gen_dir/experimental-extras-libraries.cc", |
568 "$target_gen_dir/experimental-libraries.cc", | 576 "$target_gen_dir/experimental-libraries.cc", |
569 "$target_gen_dir/extras-libraries.cc", | 577 "$target_gen_dir/extras-libraries.cc", |
570 "$target_gen_dir/experimental-extras-libraries.cc", | 578 "$target_gen_dir/libraries.cc", |
571 "$target_gen_dir/snapshot.cc", | 579 "$target_gen_dir/snapshot.cc", |
572 ] | 580 ] |
573 | 581 |
574 configs -= [ "//build/config/compiler:chromium_code" ] | 582 configs -= [ "//build/config/compiler:chromium_code" ] |
575 configs += [ "//build/config/compiler:no_chromium_code" ] | 583 configs += [ "//build/config/compiler:no_chromium_code" ] |
576 configs += [ | 584 configs += [ |
577 ":internal_config", | 585 ":internal_config", |
578 ":features", | 586 ":features", |
579 ":toolchain", | 587 ":toolchain", |
580 ] | 588 ] |
581 } | 589 } |
582 | 590 |
583 if (v8_use_external_startup_data) { | 591 if (v8_use_external_startup_data) { |
584 source_set("v8_external_snapshot") { | 592 source_set("v8_external_snapshot") { |
585 visibility = [ ":*" ] # Only targets in this file can depend on this. | 593 visibility = [ ":*" ] # Only targets in this file can depend on this. |
586 | 594 |
587 deps = [ | 595 deps = [ |
588 ":js2c", | 596 ":js2c", |
589 ":js2c_experimental", | 597 ":js2c_experimental", |
| 598 ":js2c_experimental_extras", |
590 ":js2c_extras", | 599 ":js2c_extras", |
591 ":js2c_experimental_extras", | |
592 ":v8_base", | 600 ":v8_base", |
593 ] | 601 ] |
594 public_deps = [ | 602 public_deps = [ |
595 ":natives_blob", | 603 ":natives_blob", |
596 ":run_mksnapshot", | 604 ":run_mksnapshot", |
597 ] | 605 ] |
598 | 606 |
599 sources = [ | 607 sources = [ |
600 "src/snapshot/natives-external.cc", | 608 "src/snapshot/natives-external.cc", |
601 "src/snapshot/snapshot-external.cc", | 609 "src/snapshot/snapshot-external.cc", |
(...skipping 21 matching lines...) Expand all Loading... |
623 "include/v8-profiler.h", | 631 "include/v8-profiler.h", |
624 "include/v8-testing.h", | 632 "include/v8-testing.h", |
625 "include/v8-util.h", | 633 "include/v8-util.h", |
626 "include/v8-version.h", | 634 "include/v8-version.h", |
627 "include/v8.h", | 635 "include/v8.h", |
628 "include/v8config.h", | 636 "include/v8config.h", |
629 "src/accessors.cc", | 637 "src/accessors.cc", |
630 "src/accessors.h", | 638 "src/accessors.h", |
631 "src/address-map.cc", | 639 "src/address-map.cc", |
632 "src/address-map.h", | 640 "src/address-map.h", |
| 641 "src/allocation-site-scopes.cc", |
| 642 "src/allocation-site-scopes.h", |
633 "src/allocation.cc", | 643 "src/allocation.cc", |
634 "src/allocation.h", | 644 "src/allocation.h", |
635 "src/allocation-site-scopes.cc", | |
636 "src/allocation-site-scopes.h", | |
637 "src/api.cc", | |
638 "src/api.h", | |
639 "src/api-experimental.cc", | 645 "src/api-experimental.cc", |
640 "src/api-experimental.h", | 646 "src/api-experimental.h", |
641 "src/api-natives.cc", | 647 "src/api-natives.cc", |
642 "src/api-natives.h", | 648 "src/api-natives.h", |
| 649 "src/api.cc", |
| 650 "src/api.h", |
643 "src/arguments.cc", | 651 "src/arguments.cc", |
644 "src/arguments.h", | 652 "src/arguments.h", |
645 "src/assembler.cc", | 653 "src/assembler.cc", |
646 "src/assembler.h", | 654 "src/assembler.h", |
| 655 "src/assert-scope.cc", |
647 "src/assert-scope.h", | 656 "src/assert-scope.h", |
648 "src/assert-scope.cc", | |
649 "src/ast/ast-expression-rewriter.cc", | 657 "src/ast/ast-expression-rewriter.cc", |
650 "src/ast/ast-expression-rewriter.h", | 658 "src/ast/ast-expression-rewriter.h", |
651 "src/ast/ast-expression-visitor.cc", | 659 "src/ast/ast-expression-visitor.cc", |
652 "src/ast/ast-expression-visitor.h", | 660 "src/ast/ast-expression-visitor.h", |
653 "src/ast/ast-literal-reindexer.cc", | 661 "src/ast/ast-literal-reindexer.cc", |
654 "src/ast/ast-literal-reindexer.h", | 662 "src/ast/ast-literal-reindexer.h", |
655 "src/ast/ast-numbering.cc", | 663 "src/ast/ast-numbering.cc", |
656 "src/ast/ast-numbering.h", | 664 "src/ast/ast-numbering.h", |
657 "src/ast/ast-value-factory.cc", | 665 "src/ast/ast-value-factory.cc", |
658 "src/ast/ast-value-factory.h", | 666 "src/ast/ast-value-factory.h", |
(...skipping 19 matching lines...) Expand all Loading... |
678 "src/bignum-dtoa.cc", | 686 "src/bignum-dtoa.cc", |
679 "src/bignum-dtoa.h", | 687 "src/bignum-dtoa.h", |
680 "src/bignum.cc", | 688 "src/bignum.cc", |
681 "src/bignum.h", | 689 "src/bignum.h", |
682 "src/bit-vector.cc", | 690 "src/bit-vector.cc", |
683 "src/bit-vector.h", | 691 "src/bit-vector.h", |
684 "src/bootstrapper.cc", | 692 "src/bootstrapper.cc", |
685 "src/bootstrapper.h", | 693 "src/bootstrapper.h", |
686 "src/builtins.cc", | 694 "src/builtins.cc", |
687 "src/builtins.h", | 695 "src/builtins.h", |
| 696 "src/cached-powers.cc", |
| 697 "src/cached-powers.h", |
688 "src/cancelable-task.cc", | 698 "src/cancelable-task.cc", |
689 "src/cancelable-task.h", | 699 "src/cancelable-task.h", |
690 "src/cached-powers.cc", | 700 "src/char-predicates-inl.h", |
691 "src/cached-powers.h", | |
692 "src/char-predicates.cc", | 701 "src/char-predicates.cc", |
693 "src/char-predicates-inl.h", | |
694 "src/char-predicates.h", | 702 "src/char-predicates.h", |
695 "src/checks.h", | 703 "src/checks.h", |
696 "src/code-factory.cc", | 704 "src/code-factory.cc", |
697 "src/code-factory.h", | 705 "src/code-factory.h", |
| 706 "src/code-stubs-hydrogen.cc", |
698 "src/code-stubs.cc", | 707 "src/code-stubs.cc", |
699 "src/code-stubs.h", | 708 "src/code-stubs.h", |
700 "src/code-stubs-hydrogen.cc", | |
701 "src/codegen.cc", | 709 "src/codegen.cc", |
702 "src/codegen.h", | 710 "src/codegen.h", |
703 "src/compilation-cache.cc", | 711 "src/compilation-cache.cc", |
704 "src/compilation-cache.h", | 712 "src/compilation-cache.h", |
705 "src/compilation-dependencies.cc", | 713 "src/compilation-dependencies.cc", |
706 "src/compilation-dependencies.h", | 714 "src/compilation-dependencies.h", |
707 "src/compilation-statistics.cc", | 715 "src/compilation-statistics.cc", |
708 "src/compilation-statistics.h", | 716 "src/compilation-statistics.h", |
| 717 "src/compiler.cc", |
| 718 "src/compiler.h", |
709 "src/compiler/access-builder.cc", | 719 "src/compiler/access-builder.cc", |
710 "src/compiler/access-builder.h", | 720 "src/compiler/access-builder.h", |
711 "src/compiler/access-info.cc", | 721 "src/compiler/access-info.cc", |
712 "src/compiler/access-info.h", | 722 "src/compiler/access-info.h", |
713 "src/compiler/all-nodes.cc", | 723 "src/compiler/all-nodes.cc", |
714 "src/compiler/all-nodes.h", | 724 "src/compiler/all-nodes.h", |
715 "src/compiler/ast-graph-builder.cc", | 725 "src/compiler/ast-graph-builder.cc", |
716 "src/compiler/ast-graph-builder.h", | 726 "src/compiler/ast-graph-builder.h", |
717 "src/compiler/ast-loop-assignment-analyzer.cc", | 727 "src/compiler/ast-loop-assignment-analyzer.cc", |
718 "src/compiler/ast-loop-assignment-analyzer.h", | 728 "src/compiler/ast-loop-assignment-analyzer.h", |
719 "src/compiler/basic-block-instrumentor.cc", | 729 "src/compiler/basic-block-instrumentor.cc", |
720 "src/compiler/basic-block-instrumentor.h", | 730 "src/compiler/basic-block-instrumentor.h", |
721 "src/compiler/branch-elimination.cc", | 731 "src/compiler/branch-elimination.cc", |
722 "src/compiler/branch-elimination.h", | 732 "src/compiler/branch-elimination.h", |
723 "src/compiler/bytecode-branch-analysis.cc", | 733 "src/compiler/bytecode-branch-analysis.cc", |
724 "src/compiler/bytecode-branch-analysis.h", | 734 "src/compiler/bytecode-branch-analysis.h", |
725 "src/compiler/bytecode-graph-builder.cc", | 735 "src/compiler/bytecode-graph-builder.cc", |
726 "src/compiler/bytecode-graph-builder.h", | 736 "src/compiler/bytecode-graph-builder.h", |
| 737 "src/compiler/c-linkage.cc", |
727 "src/compiler/change-lowering.cc", | 738 "src/compiler/change-lowering.cc", |
728 "src/compiler/change-lowering.h", | 739 "src/compiler/change-lowering.h", |
729 "src/compiler/c-linkage.cc", | |
730 "src/compiler/coalesced-live-ranges.cc", | 740 "src/compiler/coalesced-live-ranges.cc", |
731 "src/compiler/coalesced-live-ranges.h", | 741 "src/compiler/coalesced-live-ranges.h", |
732 "src/compiler/code-generator-impl.h", | 742 "src/compiler/code-generator-impl.h", |
733 "src/compiler/code-generator.cc", | 743 "src/compiler/code-generator.cc", |
734 "src/compiler/code-generator.h", | 744 "src/compiler/code-generator.h", |
735 "src/compiler/code-stub-assembler.cc", | 745 "src/compiler/code-stub-assembler.cc", |
736 "src/compiler/code-stub-assembler.h", | 746 "src/compiler/code-stub-assembler.h", |
737 "src/compiler/common-node-cache.cc", | 747 "src/compiler/common-node-cache.cc", |
738 "src/compiler/common-node-cache.h", | 748 "src/compiler/common-node-cache.h", |
739 "src/compiler/common-operator-reducer.cc", | 749 "src/compiler/common-operator-reducer.cc", |
740 "src/compiler/common-operator-reducer.h", | 750 "src/compiler/common-operator-reducer.h", |
741 "src/compiler/common-operator.cc", | 751 "src/compiler/common-operator.cc", |
742 "src/compiler/common-operator.h", | 752 "src/compiler/common-operator.h", |
743 "src/compiler/control-builders.cc", | 753 "src/compiler/control-builders.cc", |
744 "src/compiler/control-builders.h", | 754 "src/compiler/control-builders.h", |
745 "src/compiler/control-equivalence.cc", | 755 "src/compiler/control-equivalence.cc", |
746 "src/compiler/control-equivalence.h", | 756 "src/compiler/control-equivalence.h", |
747 "src/compiler/control-flow-optimizer.cc", | 757 "src/compiler/control-flow-optimizer.cc", |
748 "src/compiler/control-flow-optimizer.h", | 758 "src/compiler/control-flow-optimizer.h", |
749 "src/compiler/dead-code-elimination.cc", | 759 "src/compiler/dead-code-elimination.cc", |
750 "src/compiler/dead-code-elimination.h", | 760 "src/compiler/dead-code-elimination.h", |
751 "src/compiler/diamond.h", | 761 "src/compiler/diamond.h", |
| 762 "src/compiler/escape-analysis-reducer.cc", |
| 763 "src/compiler/escape-analysis-reducer.h", |
752 "src/compiler/escape-analysis.cc", | 764 "src/compiler/escape-analysis.cc", |
753 "src/compiler/escape-analysis.h", | 765 "src/compiler/escape-analysis.h", |
754 "src/compiler/escape-analysis-reducer.cc", | |
755 "src/compiler/escape-analysis-reducer.h", | |
756 "src/compiler/fast-accessor-assembler.cc", | |
757 "src/compiler/fast-accessor-assembler.h", | |
758 "src/compiler/frame.cc", | |
759 "src/compiler/frame.h", | |
760 "src/compiler/frame-elider.cc", | 766 "src/compiler/frame-elider.cc", |
761 "src/compiler/frame-elider.h", | 767 "src/compiler/frame-elider.h", |
762 "src/compiler/frame-states.cc", | 768 "src/compiler/frame-states.cc", |
763 "src/compiler/frame-states.h", | 769 "src/compiler/frame-states.h", |
| 770 "src/compiler/frame.cc", |
| 771 "src/compiler/frame.h", |
764 "src/compiler/gap-resolver.cc", | 772 "src/compiler/gap-resolver.cc", |
765 "src/compiler/gap-resolver.h", | 773 "src/compiler/gap-resolver.h", |
766 "src/compiler/graph-reducer.cc", | 774 "src/compiler/graph-reducer.cc", |
767 "src/compiler/graph-reducer.h", | 775 "src/compiler/graph-reducer.h", |
768 "src/compiler/graph-replay.cc", | 776 "src/compiler/graph-replay.cc", |
769 "src/compiler/graph-replay.h", | 777 "src/compiler/graph-replay.h", |
770 "src/compiler/graph-trimmer.cc", | 778 "src/compiler/graph-trimmer.cc", |
771 "src/compiler/graph-trimmer.h", | 779 "src/compiler/graph-trimmer.h", |
772 "src/compiler/graph-visualizer.cc", | 780 "src/compiler/graph-visualizer.cc", |
773 "src/compiler/graph-visualizer.h", | 781 "src/compiler/graph-visualizer.h", |
(...skipping 22 matching lines...) Expand all Loading... |
796 "src/compiler/js-create-lowering.cc", | 804 "src/compiler/js-create-lowering.cc", |
797 "src/compiler/js-create-lowering.h", | 805 "src/compiler/js-create-lowering.h", |
798 "src/compiler/js-frame-specialization.cc", | 806 "src/compiler/js-frame-specialization.cc", |
799 "src/compiler/js-frame-specialization.h", | 807 "src/compiler/js-frame-specialization.h", |
800 "src/compiler/js-generic-lowering.cc", | 808 "src/compiler/js-generic-lowering.cc", |
801 "src/compiler/js-generic-lowering.h", | 809 "src/compiler/js-generic-lowering.h", |
802 "src/compiler/js-global-object-specialization.cc", | 810 "src/compiler/js-global-object-specialization.cc", |
803 "src/compiler/js-global-object-specialization.h", | 811 "src/compiler/js-global-object-specialization.h", |
804 "src/compiler/js-graph.cc", | 812 "src/compiler/js-graph.cc", |
805 "src/compiler/js-graph.h", | 813 "src/compiler/js-graph.h", |
| 814 "src/compiler/js-inlining-heuristic.cc", |
| 815 "src/compiler/js-inlining-heuristic.h", |
806 "src/compiler/js-inlining.cc", | 816 "src/compiler/js-inlining.cc", |
807 "src/compiler/js-inlining.h", | 817 "src/compiler/js-inlining.h", |
808 "src/compiler/js-inlining-heuristic.cc", | |
809 "src/compiler/js-inlining-heuristic.h", | |
810 "src/compiler/js-intrinsic-lowering.cc", | 818 "src/compiler/js-intrinsic-lowering.cc", |
811 "src/compiler/js-intrinsic-lowering.h", | 819 "src/compiler/js-intrinsic-lowering.h", |
812 "src/compiler/js-native-context-specialization.cc", | 820 "src/compiler/js-native-context-specialization.cc", |
813 "src/compiler/js-native-context-specialization.h", | 821 "src/compiler/js-native-context-specialization.h", |
814 "src/compiler/js-operator.cc", | 822 "src/compiler/js-operator.cc", |
815 "src/compiler/js-operator.h", | 823 "src/compiler/js-operator.h", |
816 "src/compiler/js-typed-lowering.cc", | 824 "src/compiler/js-typed-lowering.cc", |
817 "src/compiler/js-typed-lowering.h", | 825 "src/compiler/js-typed-lowering.h", |
818 "src/compiler/jump-threading.cc", | 826 "src/compiler/jump-threading.cc", |
819 "src/compiler/jump-threading.h", | 827 "src/compiler/jump-threading.h", |
820 "src/compiler/linkage.cc", | 828 "src/compiler/linkage.cc", |
821 "src/compiler/linkage.h", | 829 "src/compiler/linkage.h", |
822 "src/compiler/live-range-separator.cc", | 830 "src/compiler/live-range-separator.cc", |
823 "src/compiler/live-range-separator.h", | 831 "src/compiler/live-range-separator.h", |
824 "src/compiler/liveness-analyzer.cc", | 832 "src/compiler/liveness-analyzer.cc", |
825 "src/compiler/liveness-analyzer.h", | 833 "src/compiler/liveness-analyzer.h", |
826 "src/compiler/load-elimination.cc", | 834 "src/compiler/load-elimination.cc", |
827 "src/compiler/load-elimination.h", | 835 "src/compiler/load-elimination.h", |
828 "src/compiler/loop-peeling.cc", | |
829 "src/compiler/loop-analysis.cc", | 836 "src/compiler/loop-analysis.cc", |
830 "src/compiler/loop-analysis.h", | 837 "src/compiler/loop-analysis.h", |
| 838 "src/compiler/loop-peeling.cc", |
831 "src/compiler/machine-operator-reducer.cc", | 839 "src/compiler/machine-operator-reducer.cc", |
832 "src/compiler/machine-operator-reducer.h", | 840 "src/compiler/machine-operator-reducer.h", |
833 "src/compiler/machine-operator.cc", | 841 "src/compiler/machine-operator.cc", |
834 "src/compiler/machine-operator.h", | 842 "src/compiler/machine-operator.h", |
835 "src/compiler/move-optimizer.cc", | 843 "src/compiler/move-optimizer.cc", |
836 "src/compiler/move-optimizer.h", | 844 "src/compiler/move-optimizer.h", |
837 "src/compiler/node-aux-data.h", | 845 "src/compiler/node-aux-data.h", |
838 "src/compiler/node-cache.cc", | 846 "src/compiler/node-cache.cc", |
839 "src/compiler/node-cache.h", | 847 "src/compiler/node-cache.h", |
840 "src/compiler/node-marker.cc", | 848 "src/compiler/node-marker.cc", |
841 "src/compiler/node-marker.h", | 849 "src/compiler/node-marker.h", |
842 "src/compiler/node-matchers.cc", | 850 "src/compiler/node-matchers.cc", |
843 "src/compiler/node-matchers.h", | 851 "src/compiler/node-matchers.h", |
844 "src/compiler/node-properties.cc", | 852 "src/compiler/node-properties.cc", |
845 "src/compiler/node-properties.h", | 853 "src/compiler/node-properties.h", |
846 "src/compiler/node.cc", | 854 "src/compiler/node.cc", |
847 "src/compiler/node.h", | 855 "src/compiler/node.h", |
848 "src/compiler/opcodes.cc", | 856 "src/compiler/opcodes.cc", |
849 "src/compiler/opcodes.h", | 857 "src/compiler/opcodes.h", |
850 "src/compiler/operator-properties.cc", | 858 "src/compiler/operator-properties.cc", |
851 "src/compiler/operator-properties.h", | 859 "src/compiler/operator-properties.h", |
852 "src/compiler/operator.cc", | 860 "src/compiler/operator.cc", |
853 "src/compiler/operator.h", | 861 "src/compiler/operator.h", |
854 "src/compiler/osr.cc", | 862 "src/compiler/osr.cc", |
855 "src/compiler/osr.h", | 863 "src/compiler/osr.h", |
| 864 "src/compiler/pipeline-statistics.cc", |
| 865 "src/compiler/pipeline-statistics.h", |
856 "src/compiler/pipeline.cc", | 866 "src/compiler/pipeline.cc", |
857 "src/compiler/pipeline.h", | 867 "src/compiler/pipeline.h", |
858 "src/compiler/pipeline-statistics.cc", | |
859 "src/compiler/pipeline-statistics.h", | |
860 "src/compiler/raw-machine-assembler.cc", | 868 "src/compiler/raw-machine-assembler.cc", |
861 "src/compiler/raw-machine-assembler.h", | 869 "src/compiler/raw-machine-assembler.h", |
| 870 "src/compiler/register-allocator-verifier.cc", |
| 871 "src/compiler/register-allocator-verifier.h", |
862 "src/compiler/register-allocator.cc", | 872 "src/compiler/register-allocator.cc", |
863 "src/compiler/register-allocator.h", | 873 "src/compiler/register-allocator.h", |
864 "src/compiler/register-allocator-verifier.cc", | |
865 "src/compiler/register-allocator-verifier.h", | |
866 "src/compiler/representation-change.cc", | 874 "src/compiler/representation-change.cc", |
867 "src/compiler/representation-change.h", | 875 "src/compiler/representation-change.h", |
868 "src/compiler/schedule.cc", | 876 "src/compiler/schedule.cc", |
869 "src/compiler/schedule.h", | 877 "src/compiler/schedule.h", |
870 "src/compiler/scheduler.cc", | 878 "src/compiler/scheduler.cc", |
871 "src/compiler/scheduler.h", | 879 "src/compiler/scheduler.h", |
872 "src/compiler/select-lowering.cc", | 880 "src/compiler/select-lowering.cc", |
873 "src/compiler/select-lowering.h", | 881 "src/compiler/select-lowering.h", |
874 "src/compiler/simplified-lowering.cc", | 882 "src/compiler/simplified-lowering.cc", |
875 "src/compiler/simplified-lowering.h", | 883 "src/compiler/simplified-lowering.h", |
(...skipping 15 matching lines...) Expand all Loading... |
891 "src/compiler/typer.h", | 899 "src/compiler/typer.h", |
892 "src/compiler/value-numbering-reducer.cc", | 900 "src/compiler/value-numbering-reducer.cc", |
893 "src/compiler/value-numbering-reducer.h", | 901 "src/compiler/value-numbering-reducer.h", |
894 "src/compiler/verifier.cc", | 902 "src/compiler/verifier.cc", |
895 "src/compiler/verifier.h", | 903 "src/compiler/verifier.h", |
896 "src/compiler/wasm-compiler.cc", | 904 "src/compiler/wasm-compiler.cc", |
897 "src/compiler/wasm-compiler.h", | 905 "src/compiler/wasm-compiler.h", |
898 "src/compiler/wasm-linkage.cc", | 906 "src/compiler/wasm-linkage.cc", |
899 "src/compiler/zone-pool.cc", | 907 "src/compiler/zone-pool.cc", |
900 "src/compiler/zone-pool.h", | 908 "src/compiler/zone-pool.h", |
901 "src/compiler.cc", | |
902 "src/compiler.h", | |
903 "src/context-measure.cc", | 909 "src/context-measure.cc", |
904 "src/context-measure.h", | 910 "src/context-measure.h", |
905 "src/contexts-inl.h", | 911 "src/contexts-inl.h", |
906 "src/contexts.cc", | 912 "src/contexts.cc", |
907 "src/contexts.h", | 913 "src/contexts.h", |
908 "src/conversions-inl.h", | 914 "src/conversions-inl.h", |
909 "src/conversions.cc", | 915 "src/conversions.cc", |
910 "src/conversions.h", | 916 "src/conversions.h", |
911 "src/counters.cc", | 917 "src/counters.cc", |
912 "src/counters.h", | 918 "src/counters.h", |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1009 "src/extensions/free-buffer-extension.cc", | 1015 "src/extensions/free-buffer-extension.cc", |
1010 "src/extensions/free-buffer-extension.h", | 1016 "src/extensions/free-buffer-extension.h", |
1011 "src/extensions/gc-extension.cc", | 1017 "src/extensions/gc-extension.cc", |
1012 "src/extensions/gc-extension.h", | 1018 "src/extensions/gc-extension.h", |
1013 "src/extensions/statistics-extension.cc", | 1019 "src/extensions/statistics-extension.cc", |
1014 "src/extensions/statistics-extension.h", | 1020 "src/extensions/statistics-extension.h", |
1015 "src/extensions/trigger-failure-extension.cc", | 1021 "src/extensions/trigger-failure-extension.cc", |
1016 "src/extensions/trigger-failure-extension.h", | 1022 "src/extensions/trigger-failure-extension.h", |
1017 "src/factory.cc", | 1023 "src/factory.cc", |
1018 "src/factory.h", | 1024 "src/factory.h", |
| 1025 "src/fast-accessor-assembler.cc", |
| 1026 "src/fast-accessor-assembler.h", |
1019 "src/fast-dtoa.cc", | 1027 "src/fast-dtoa.cc", |
1020 "src/fast-dtoa.h", | 1028 "src/fast-dtoa.h", |
| 1029 "src/field-index-inl.h", |
1021 "src/field-index.h", | 1030 "src/field-index.h", |
1022 "src/field-index-inl.h", | |
1023 "src/field-type.cc", | 1031 "src/field-type.cc", |
1024 "src/field-type.h", | 1032 "src/field-type.h", |
1025 "src/fixed-dtoa.cc", | 1033 "src/fixed-dtoa.cc", |
1026 "src/fixed-dtoa.h", | 1034 "src/fixed-dtoa.h", |
1027 "src/flag-definitions.h", | 1035 "src/flag-definitions.h", |
1028 "src/flags.cc", | 1036 "src/flags.cc", |
1029 "src/flags.h", | 1037 "src/flags.h", |
1030 "src/frames-inl.h", | 1038 "src/frames-inl.h", |
1031 "src/frames.cc", | 1039 "src/frames.cc", |
1032 "src/frames.h", | 1040 "src/frames.h", |
(...skipping 29 matching lines...) Expand all Loading... |
1062 "src/heap/mark-compact.h", | 1070 "src/heap/mark-compact.h", |
1063 "src/heap/memory-reducer.cc", | 1071 "src/heap/memory-reducer.cc", |
1064 "src/heap/memory-reducer.h", | 1072 "src/heap/memory-reducer.h", |
1065 "src/heap/object-stats.cc", | 1073 "src/heap/object-stats.cc", |
1066 "src/heap/object-stats.h", | 1074 "src/heap/object-stats.h", |
1067 "src/heap/objects-visiting-inl.h", | 1075 "src/heap/objects-visiting-inl.h", |
1068 "src/heap/objects-visiting.cc", | 1076 "src/heap/objects-visiting.cc", |
1069 "src/heap/objects-visiting.h", | 1077 "src/heap/objects-visiting.h", |
1070 "src/heap/remembered-set.cc", | 1078 "src/heap/remembered-set.cc", |
1071 "src/heap/remembered-set.h", | 1079 "src/heap/remembered-set.h", |
| 1080 "src/heap/scavenge-job.cc", |
1072 "src/heap/scavenge-job.h", | 1081 "src/heap/scavenge-job.h", |
1073 "src/heap/scavenge-job.cc", | |
1074 "src/heap/scavenger-inl.h", | 1082 "src/heap/scavenger-inl.h", |
1075 "src/heap/scavenger.cc", | 1083 "src/heap/scavenger.cc", |
1076 "src/heap/scavenger.h", | 1084 "src/heap/scavenger.h", |
1077 "src/heap/slot-set.h", | 1085 "src/heap/slot-set.h", |
1078 "src/heap/slots-buffer.cc", | 1086 "src/heap/slots-buffer.cc", |
1079 "src/heap/slots-buffer.h", | 1087 "src/heap/slots-buffer.h", |
1080 "src/heap/spaces-inl.h", | 1088 "src/heap/spaces-inl.h", |
1081 "src/heap/spaces.cc", | 1089 "src/heap/spaces.cc", |
1082 "src/heap/spaces.h", | 1090 "src/heap/spaces.h", |
1083 "src/heap/store-buffer-inl.h", | 1091 "src/heap/store-buffer-inl.h", |
1084 "src/heap/store-buffer.cc", | 1092 "src/heap/store-buffer.cc", |
1085 "src/heap/store-buffer.h", | 1093 "src/heap/store-buffer.h", |
1086 "src/i18n.cc", | 1094 "src/i18n.cc", |
1087 "src/i18n.h", | 1095 "src/i18n.h", |
1088 "src/icu_util.cc", | |
1089 "src/icu_util.h", | |
1090 "src/ic/access-compiler.cc", | 1096 "src/ic/access-compiler.cc", |
1091 "src/ic/access-compiler.h", | 1097 "src/ic/access-compiler.h", |
1092 "src/ic/call-optimization.cc", | 1098 "src/ic/call-optimization.cc", |
1093 "src/ic/call-optimization.h", | 1099 "src/ic/call-optimization.h", |
1094 "src/ic/handler-compiler.cc", | 1100 "src/ic/handler-compiler.cc", |
1095 "src/ic/handler-compiler.h", | 1101 "src/ic/handler-compiler.h", |
| 1102 "src/ic/ic-compiler.cc", |
| 1103 "src/ic/ic-compiler.h", |
1096 "src/ic/ic-inl.h", | 1104 "src/ic/ic-inl.h", |
1097 "src/ic/ic-state.cc", | 1105 "src/ic/ic-state.cc", |
1098 "src/ic/ic-state.h", | 1106 "src/ic/ic-state.h", |
1099 "src/ic/ic.cc", | 1107 "src/ic/ic.cc", |
1100 "src/ic/ic.h", | 1108 "src/ic/ic.h", |
1101 "src/ic/ic-compiler.cc", | |
1102 "src/ic/ic-compiler.h", | |
1103 "src/ic/stub-cache.cc", | 1109 "src/ic/stub-cache.cc", |
1104 "src/ic/stub-cache.h", | 1110 "src/ic/stub-cache.h", |
| 1111 "src/icu_util.cc", |
| 1112 "src/icu_util.h", |
1105 "src/identity-map.cc", | 1113 "src/identity-map.cc", |
1106 "src/identity-map.h", | 1114 "src/identity-map.h", |
1107 "src/interface-descriptors.cc", | 1115 "src/interface-descriptors.cc", |
1108 "src/interface-descriptors.h", | 1116 "src/interface-descriptors.h", |
1109 "src/interpreter/bytecodes.cc", | |
1110 "src/interpreter/bytecodes.h", | |
1111 "src/interpreter/bytecode-array-builder.cc", | 1117 "src/interpreter/bytecode-array-builder.cc", |
1112 "src/interpreter/bytecode-array-builder.h", | 1118 "src/interpreter/bytecode-array-builder.h", |
1113 "src/interpreter/bytecode-array-iterator.cc", | 1119 "src/interpreter/bytecode-array-iterator.cc", |
1114 "src/interpreter/bytecode-array-iterator.h", | 1120 "src/interpreter/bytecode-array-iterator.h", |
1115 "src/interpreter/bytecode-generator.cc", | 1121 "src/interpreter/bytecode-generator.cc", |
1116 "src/interpreter/bytecode-generator.h", | 1122 "src/interpreter/bytecode-generator.h", |
1117 "src/interpreter/bytecode-register-allocator.cc", | 1123 "src/interpreter/bytecode-register-allocator.cc", |
1118 "src/interpreter/bytecode-register-allocator.h", | 1124 "src/interpreter/bytecode-register-allocator.h", |
1119 "src/interpreter/bytecode-traits.h", | 1125 "src/interpreter/bytecode-traits.h", |
| 1126 "src/interpreter/bytecodes.cc", |
| 1127 "src/interpreter/bytecodes.h", |
1120 "src/interpreter/constant-array-builder.cc", | 1128 "src/interpreter/constant-array-builder.cc", |
1121 "src/interpreter/constant-array-builder.h", | 1129 "src/interpreter/constant-array-builder.h", |
1122 "src/interpreter/control-flow-builders.cc", | 1130 "src/interpreter/control-flow-builders.cc", |
1123 "src/interpreter/control-flow-builders.h", | 1131 "src/interpreter/control-flow-builders.h", |
1124 "src/interpreter/handler-table-builder.cc", | 1132 "src/interpreter/handler-table-builder.cc", |
1125 "src/interpreter/handler-table-builder.h", | 1133 "src/interpreter/handler-table-builder.h", |
| 1134 "src/interpreter/interpreter-assembler.cc", |
| 1135 "src/interpreter/interpreter-assembler.h", |
1126 "src/interpreter/interpreter.cc", | 1136 "src/interpreter/interpreter.cc", |
1127 "src/interpreter/interpreter.h", | 1137 "src/interpreter/interpreter.h", |
1128 "src/interpreter/interpreter-assembler.cc", | |
1129 "src/interpreter/interpreter-assembler.h", | |
1130 "src/interpreter/register-translator.cc", | 1138 "src/interpreter/register-translator.cc", |
1131 "src/interpreter/register-translator.h", | 1139 "src/interpreter/register-translator.h", |
1132 "src/interpreter/source-position-table.cc", | 1140 "src/interpreter/source-position-table.cc", |
1133 "src/interpreter/source-position-table.h", | 1141 "src/interpreter/source-position-table.h", |
1134 "src/isolate-inl.h", | 1142 "src/isolate-inl.h", |
1135 "src/isolate.cc", | 1143 "src/isolate.cc", |
1136 "src/isolate.h", | 1144 "src/isolate.h", |
1137 "src/json-parser.h", | 1145 "src/json-parser.h", |
1138 "src/json-stringifier.h", | 1146 "src/json-stringifier.h", |
| 1147 "src/key-accumulator.cc", |
1139 "src/key-accumulator.h", | 1148 "src/key-accumulator.h", |
1140 "src/key-accumulator.cc", | |
1141 "src/layout-descriptor-inl.h", | 1149 "src/layout-descriptor-inl.h", |
1142 "src/layout-descriptor.cc", | 1150 "src/layout-descriptor.cc", |
1143 "src/layout-descriptor.h", | 1151 "src/layout-descriptor.h", |
1144 "src/list-inl.h", | 1152 "src/list-inl.h", |
1145 "src/list.h", | 1153 "src/list.h", |
1146 "src/log-inl.h", | 1154 "src/log-inl.h", |
1147 "src/log-utils.cc", | 1155 "src/log-utils.cc", |
1148 "src/log-utils.h", | 1156 "src/log-utils.h", |
1149 "src/log.cc", | 1157 "src/log.cc", |
1150 "src/log.h", | 1158 "src/log.h", |
1151 "src/lookup.cc", | 1159 "src/lookup.cc", |
1152 "src/lookup.h", | 1160 "src/lookup.h", |
1153 "src/macro-assembler.h", | |
1154 "src/machine-type.cc", | 1161 "src/machine-type.cc", |
1155 "src/machine-type.h", | 1162 "src/machine-type.h", |
| 1163 "src/macro-assembler.h", |
1156 "src/messages.cc", | 1164 "src/messages.cc", |
1157 "src/messages.h", | 1165 "src/messages.h", |
1158 "src/msan.h", | 1166 "src/msan.h", |
1159 "src/objects-body-descriptors-inl.h", | 1167 "src/objects-body-descriptors-inl.h", |
1160 "src/objects-body-descriptors.h", | 1168 "src/objects-body-descriptors.h", |
1161 "src/objects-debug.cc", | 1169 "src/objects-debug.cc", |
1162 "src/objects-inl.h", | 1170 "src/objects-inl.h", |
1163 "src/objects-printer.cc", | 1171 "src/objects-printer.cc", |
1164 "src/objects.cc", | 1172 "src/objects.cc", |
1165 "src/objects.h", | 1173 "src/objects.h", |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1275 "src/runtime/runtime-typedarray.cc", | 1283 "src/runtime/runtime-typedarray.cc", |
1276 "src/runtime/runtime-uri.cc", | 1284 "src/runtime/runtime-uri.cc", |
1277 "src/runtime/runtime-utils.h", | 1285 "src/runtime/runtime-utils.h", |
1278 "src/runtime/runtime.cc", | 1286 "src/runtime/runtime.cc", |
1279 "src/runtime/runtime.h", | 1287 "src/runtime/runtime.h", |
1280 "src/safepoint-table.cc", | 1288 "src/safepoint-table.cc", |
1281 "src/safepoint-table.h", | 1289 "src/safepoint-table.h", |
1282 "src/signature.h", | 1290 "src/signature.h", |
1283 "src/simulator.h", | 1291 "src/simulator.h", |
1284 "src/small-pointer-list.h", | 1292 "src/small-pointer-list.h", |
| 1293 "src/snapshot/natives-common.cc", |
1285 "src/snapshot/natives.h", | 1294 "src/snapshot/natives.h", |
1286 "src/snapshot/natives-common.cc", | |
1287 "src/snapshot/serialize.cc", | 1295 "src/snapshot/serialize.cc", |
1288 "src/snapshot/serialize.h", | 1296 "src/snapshot/serialize.h", |
1289 "src/snapshot/snapshot-common.cc", | 1297 "src/snapshot/snapshot-common.cc", |
1290 "src/snapshot/snapshot-source-sink.cc", | 1298 "src/snapshot/snapshot-source-sink.cc", |
1291 "src/snapshot/snapshot-source-sink.h", | 1299 "src/snapshot/snapshot-source-sink.h", |
| 1300 "src/snapshot/snapshot.h", |
1292 "src/source-position.h", | 1301 "src/source-position.h", |
| 1302 "src/splay-tree-inl.h", |
1293 "src/splay-tree.h", | 1303 "src/splay-tree.h", |
1294 "src/splay-tree-inl.h", | 1304 "src/startup-data-util.cc", |
1295 "src/snapshot/snapshot.h", | |
1296 "src/startup-data-util.h", | 1305 "src/startup-data-util.h", |
1297 "src/startup-data-util.cc", | |
1298 "src/string-builder.cc", | 1306 "src/string-builder.cc", |
1299 "src/string-builder.h", | 1307 "src/string-builder.h", |
1300 "src/string-search.h", | 1308 "src/string-search.h", |
1301 "src/string-stream.cc", | 1309 "src/string-stream.cc", |
1302 "src/string-stream.h", | 1310 "src/string-stream.h", |
1303 "src/strtod.cc", | 1311 "src/strtod.cc", |
1304 "src/strtod.h", | 1312 "src/strtod.h", |
| 1313 "src/third_party/fdlibm/fdlibm.cc", |
| 1314 "src/third_party/fdlibm/fdlibm.h", |
1305 "src/tracing/trace-event.cc", | 1315 "src/tracing/trace-event.cc", |
1306 "src/tracing/trace-event.h", | 1316 "src/tracing/trace-event.h", |
1307 "src/transitions-inl.h", | 1317 "src/transitions-inl.h", |
1308 "src/transitions.cc", | 1318 "src/transitions.cc", |
1309 "src/transitions.h", | 1319 "src/transitions.h", |
1310 "src/type-cache.cc", | 1320 "src/type-cache.cc", |
1311 "src/type-cache.h", | 1321 "src/type-cache.h", |
1312 "src/type-feedback-vector-inl.h", | 1322 "src/type-feedback-vector-inl.h", |
1313 "src/type-feedback-vector.cc", | 1323 "src/type-feedback-vector.cc", |
1314 "src/type-feedback-vector.h", | 1324 "src/type-feedback-vector.h", |
1315 "src/type-info.cc", | 1325 "src/type-info.cc", |
1316 "src/type-info.h", | 1326 "src/type-info.h", |
1317 "src/types.cc", | 1327 "src/types.cc", |
1318 "src/types.h", | 1328 "src/types.h", |
1319 "src/typing-asm.cc", | 1329 "src/typing-asm.cc", |
1320 "src/typing-asm.h", | 1330 "src/typing-asm.h", |
1321 "src/typing-reset.cc", | 1331 "src/typing-reset.cc", |
1322 "src/typing-reset.h", | 1332 "src/typing-reset.h", |
1323 "src/unicode-inl.h", | |
1324 "src/unicode.cc", | |
1325 "src/unicode.h", | |
1326 "src/unicode-cache-inl.h", | 1333 "src/unicode-cache-inl.h", |
1327 "src/unicode-cache.h", | 1334 "src/unicode-cache.h", |
1328 "src/unicode-decoder.cc", | 1335 "src/unicode-decoder.cc", |
1329 "src/unicode-decoder.h", | 1336 "src/unicode-decoder.h", |
| 1337 "src/unicode-inl.h", |
| 1338 "src/unicode.cc", |
| 1339 "src/unicode.h", |
1330 "src/utils-inl.h", | 1340 "src/utils-inl.h", |
1331 "src/utils.cc", | 1341 "src/utils.cc", |
1332 "src/utils.h", | 1342 "src/utils.h", |
1333 "src/v8.cc", | 1343 "src/v8.cc", |
1334 "src/v8.h", | 1344 "src/v8.h", |
1335 "src/v8memory.h", | 1345 "src/v8memory.h", |
1336 "src/v8threads.cc", | 1346 "src/v8threads.cc", |
1337 "src/v8threads.h", | 1347 "src/v8threads.h", |
1338 "src/version.cc", | 1348 "src/version.cc", |
1339 "src/version.h", | 1349 "src/version.h", |
(...skipping 10 matching lines...) Expand all Loading... |
1350 "src/wasm/module-decoder.h", | 1360 "src/wasm/module-decoder.h", |
1351 "src/wasm/wasm-js.cc", | 1361 "src/wasm/wasm-js.cc", |
1352 "src/wasm/wasm-js.h", | 1362 "src/wasm/wasm-js.h", |
1353 "src/wasm/wasm-macro-gen.h", | 1363 "src/wasm/wasm-macro-gen.h", |
1354 "src/wasm/wasm-module.cc", | 1364 "src/wasm/wasm-module.cc", |
1355 "src/wasm/wasm-module.h", | 1365 "src/wasm/wasm-module.h", |
1356 "src/wasm/wasm-opcodes.cc", | 1366 "src/wasm/wasm-opcodes.cc", |
1357 "src/wasm/wasm-opcodes.h", | 1367 "src/wasm/wasm-opcodes.h", |
1358 "src/wasm/wasm-result.cc", | 1368 "src/wasm/wasm-result.cc", |
1359 "src/wasm/wasm-result.h", | 1369 "src/wasm/wasm-result.h", |
| 1370 "src/zone-allocator.h", |
| 1371 "src/zone-containers.h", |
1360 "src/zone.cc", | 1372 "src/zone.cc", |
1361 "src/zone.h", | 1373 "src/zone.h", |
1362 "src/zone-allocator.h", | |
1363 "src/zone-containers.h", | |
1364 "src/third_party/fdlibm/fdlibm.cc", | |
1365 "src/third_party/fdlibm/fdlibm.h", | |
1366 ] | 1374 ] |
1367 | 1375 |
1368 if (v8_target_arch == "x86") { | 1376 if (v8_target_arch == "x86") { |
1369 sources += [ | 1377 sources += [ |
| 1378 "src/compiler/ia32/code-generator-ia32.cc", |
| 1379 "src/compiler/ia32/instruction-codes-ia32.h", |
| 1380 "src/compiler/ia32/instruction-scheduler-ia32.cc", |
| 1381 "src/compiler/ia32/instruction-selector-ia32.cc", |
1370 "src/crankshaft/ia32/lithium-codegen-ia32.cc", | 1382 "src/crankshaft/ia32/lithium-codegen-ia32.cc", |
1371 "src/crankshaft/ia32/lithium-codegen-ia32.h", | 1383 "src/crankshaft/ia32/lithium-codegen-ia32.h", |
1372 "src/crankshaft/ia32/lithium-gap-resolver-ia32.cc", | 1384 "src/crankshaft/ia32/lithium-gap-resolver-ia32.cc", |
1373 "src/crankshaft/ia32/lithium-gap-resolver-ia32.h", | 1385 "src/crankshaft/ia32/lithium-gap-resolver-ia32.h", |
1374 "src/crankshaft/ia32/lithium-ia32.cc", | 1386 "src/crankshaft/ia32/lithium-ia32.cc", |
1375 "src/crankshaft/ia32/lithium-ia32.h", | 1387 "src/crankshaft/ia32/lithium-ia32.h", |
1376 "src/compiler/ia32/code-generator-ia32.cc", | |
1377 "src/compiler/ia32/instruction-codes-ia32.h", | |
1378 "src/compiler/ia32/instruction-scheduler-ia32.cc", | |
1379 "src/compiler/ia32/instruction-selector-ia32.cc", | |
1380 "src/debug/ia32/debug-ia32.cc", | 1388 "src/debug/ia32/debug-ia32.cc", |
1381 "src/full-codegen/ia32/full-codegen-ia32.cc", | 1389 "src/full-codegen/ia32/full-codegen-ia32.cc", |
1382 "src/ia32/assembler-ia32-inl.h", | 1390 "src/ia32/assembler-ia32-inl.h", |
1383 "src/ia32/assembler-ia32.cc", | 1391 "src/ia32/assembler-ia32.cc", |
1384 "src/ia32/assembler-ia32.h", | 1392 "src/ia32/assembler-ia32.h", |
1385 "src/ia32/builtins-ia32.cc", | 1393 "src/ia32/builtins-ia32.cc", |
1386 "src/ia32/code-stubs-ia32.cc", | 1394 "src/ia32/code-stubs-ia32.cc", |
1387 "src/ia32/code-stubs-ia32.h", | 1395 "src/ia32/code-stubs-ia32.h", |
1388 "src/ia32/codegen-ia32.cc", | 1396 "src/ia32/codegen-ia32.cc", |
1389 "src/ia32/codegen-ia32.h", | 1397 "src/ia32/codegen-ia32.h", |
1390 "src/ia32/cpu-ia32.cc", | 1398 "src/ia32/cpu-ia32.cc", |
1391 "src/ia32/deoptimizer-ia32.cc", | 1399 "src/ia32/deoptimizer-ia32.cc", |
1392 "src/ia32/disasm-ia32.cc", | 1400 "src/ia32/disasm-ia32.cc", |
1393 "src/ia32/frames-ia32.cc", | 1401 "src/ia32/frames-ia32.cc", |
1394 "src/ia32/frames-ia32.h", | 1402 "src/ia32/frames-ia32.h", |
1395 "src/ia32/interface-descriptors-ia32.cc", | 1403 "src/ia32/interface-descriptors-ia32.cc", |
1396 "src/ia32/macro-assembler-ia32.cc", | 1404 "src/ia32/macro-assembler-ia32.cc", |
1397 "src/ia32/macro-assembler-ia32.h", | 1405 "src/ia32/macro-assembler-ia32.h", |
1398 "src/ic/ia32/access-compiler-ia32.cc", | 1406 "src/ic/ia32/access-compiler-ia32.cc", |
1399 "src/ic/ia32/handler-compiler-ia32.cc", | 1407 "src/ic/ia32/handler-compiler-ia32.cc", |
| 1408 "src/ic/ia32/ic-compiler-ia32.cc", |
1400 "src/ic/ia32/ic-ia32.cc", | 1409 "src/ic/ia32/ic-ia32.cc", |
1401 "src/ic/ia32/ic-compiler-ia32.cc", | |
1402 "src/ic/ia32/stub-cache-ia32.cc", | 1410 "src/ic/ia32/stub-cache-ia32.cc", |
1403 "src/regexp/ia32/regexp-macro-assembler-ia32.cc", | 1411 "src/regexp/ia32/regexp-macro-assembler-ia32.cc", |
1404 "src/regexp/ia32/regexp-macro-assembler-ia32.h", | 1412 "src/regexp/ia32/regexp-macro-assembler-ia32.h", |
1405 ] | 1413 ] |
1406 } else if (v8_target_arch == "x64") { | 1414 } else if (v8_target_arch == "x64") { |
1407 sources += [ | 1415 sources += [ |
1408 "src/compiler/x64/code-generator-x64.cc", | 1416 "src/compiler/x64/code-generator-x64.cc", |
1409 "src/compiler/x64/instruction-codes-x64.h", | 1417 "src/compiler/x64/instruction-codes-x64.h", |
1410 "src/compiler/x64/instruction-scheduler-x64.cc", | 1418 "src/compiler/x64/instruction-scheduler-x64.cc", |
1411 "src/compiler/x64/instruction-selector-x64.cc", | 1419 "src/compiler/x64/instruction-selector-x64.cc", |
1412 "src/crankshaft/x64/lithium-codegen-x64.cc", | 1420 "src/crankshaft/x64/lithium-codegen-x64.cc", |
1413 "src/crankshaft/x64/lithium-codegen-x64.h", | 1421 "src/crankshaft/x64/lithium-codegen-x64.h", |
1414 "src/crankshaft/x64/lithium-gap-resolver-x64.cc", | 1422 "src/crankshaft/x64/lithium-gap-resolver-x64.cc", |
1415 "src/crankshaft/x64/lithium-gap-resolver-x64.h", | 1423 "src/crankshaft/x64/lithium-gap-resolver-x64.h", |
1416 "src/crankshaft/x64/lithium-x64.cc", | 1424 "src/crankshaft/x64/lithium-x64.cc", |
1417 "src/crankshaft/x64/lithium-x64.h", | 1425 "src/crankshaft/x64/lithium-x64.h", |
1418 "src/debug/x64/debug-x64.cc", | 1426 "src/debug/x64/debug-x64.cc", |
1419 "src/full-codegen/x64/full-codegen-x64.cc", | 1427 "src/full-codegen/x64/full-codegen-x64.cc", |
1420 "src/ic/x64/access-compiler-x64.cc", | 1428 "src/ic/x64/access-compiler-x64.cc", |
1421 "src/ic/x64/handler-compiler-x64.cc", | 1429 "src/ic/x64/handler-compiler-x64.cc", |
| 1430 "src/ic/x64/ic-compiler-x64.cc", |
1422 "src/ic/x64/ic-x64.cc", | 1431 "src/ic/x64/ic-x64.cc", |
1423 "src/ic/x64/ic-compiler-x64.cc", | |
1424 "src/ic/x64/stub-cache-x64.cc", | 1432 "src/ic/x64/stub-cache-x64.cc", |
1425 "src/regexp/x64/regexp-macro-assembler-x64.cc", | 1433 "src/regexp/x64/regexp-macro-assembler-x64.cc", |
1426 "src/regexp/x64/regexp-macro-assembler-x64.h", | 1434 "src/regexp/x64/regexp-macro-assembler-x64.h", |
1427 "src/x64/assembler-x64-inl.h", | 1435 "src/x64/assembler-x64-inl.h", |
1428 "src/x64/assembler-x64.cc", | 1436 "src/x64/assembler-x64.cc", |
1429 "src/x64/assembler-x64.h", | 1437 "src/x64/assembler-x64.h", |
1430 "src/x64/builtins-x64.cc", | 1438 "src/x64/builtins-x64.cc", |
1431 "src/x64/code-stubs-x64.cc", | 1439 "src/x64/code-stubs-x64.cc", |
1432 "src/x64/code-stubs-x64.h", | 1440 "src/x64/code-stubs-x64.h", |
1433 "src/x64/codegen-x64.cc", | 1441 "src/x64/codegen-x64.cc", |
(...skipping 10 matching lines...) Expand all Loading... |
1444 } else if (v8_target_arch == "arm") { | 1452 } else if (v8_target_arch == "arm") { |
1445 sources += [ | 1453 sources += [ |
1446 "src/arm/assembler-arm-inl.h", | 1454 "src/arm/assembler-arm-inl.h", |
1447 "src/arm/assembler-arm.cc", | 1455 "src/arm/assembler-arm.cc", |
1448 "src/arm/assembler-arm.h", | 1456 "src/arm/assembler-arm.h", |
1449 "src/arm/builtins-arm.cc", | 1457 "src/arm/builtins-arm.cc", |
1450 "src/arm/code-stubs-arm.cc", | 1458 "src/arm/code-stubs-arm.cc", |
1451 "src/arm/code-stubs-arm.h", | 1459 "src/arm/code-stubs-arm.h", |
1452 "src/arm/codegen-arm.cc", | 1460 "src/arm/codegen-arm.cc", |
1453 "src/arm/codegen-arm.h", | 1461 "src/arm/codegen-arm.h", |
| 1462 "src/arm/constants-arm.cc", |
1454 "src/arm/constants-arm.h", | 1463 "src/arm/constants-arm.h", |
1455 "src/arm/constants-arm.cc", | |
1456 "src/arm/cpu-arm.cc", | 1464 "src/arm/cpu-arm.cc", |
1457 "src/arm/deoptimizer-arm.cc", | 1465 "src/arm/deoptimizer-arm.cc", |
1458 "src/arm/disasm-arm.cc", | 1466 "src/arm/disasm-arm.cc", |
1459 "src/arm/frames-arm.cc", | 1467 "src/arm/frames-arm.cc", |
1460 "src/arm/frames-arm.h", | 1468 "src/arm/frames-arm.h", |
1461 "src/arm/interface-descriptors-arm.cc", | 1469 "src/arm/interface-descriptors-arm.cc", |
1462 "src/arm/interface-descriptors-arm.h", | 1470 "src/arm/interface-descriptors-arm.h", |
1463 "src/arm/macro-assembler-arm.cc", | 1471 "src/arm/macro-assembler-arm.cc", |
1464 "src/arm/macro-assembler-arm.h", | 1472 "src/arm/macro-assembler-arm.h", |
1465 "src/arm/simulator-arm.cc", | 1473 "src/arm/simulator-arm.cc", |
(...skipping 13 matching lines...) Expand all Loading... |
1479 "src/ic/arm/access-compiler-arm.cc", | 1487 "src/ic/arm/access-compiler-arm.cc", |
1480 "src/ic/arm/handler-compiler-arm.cc", | 1488 "src/ic/arm/handler-compiler-arm.cc", |
1481 "src/ic/arm/ic-arm.cc", | 1489 "src/ic/arm/ic-arm.cc", |
1482 "src/ic/arm/ic-compiler-arm.cc", | 1490 "src/ic/arm/ic-compiler-arm.cc", |
1483 "src/ic/arm/stub-cache-arm.cc", | 1491 "src/ic/arm/stub-cache-arm.cc", |
1484 "src/regexp/arm/regexp-macro-assembler-arm.cc", | 1492 "src/regexp/arm/regexp-macro-assembler-arm.cc", |
1485 "src/regexp/arm/regexp-macro-assembler-arm.h", | 1493 "src/regexp/arm/regexp-macro-assembler-arm.h", |
1486 ] | 1494 ] |
1487 } else if (v8_target_arch == "arm64") { | 1495 } else if (v8_target_arch == "arm64") { |
1488 sources += [ | 1496 sources += [ |
| 1497 "src/arm64/assembler-arm64-inl.h", |
1489 "src/arm64/assembler-arm64.cc", | 1498 "src/arm64/assembler-arm64.cc", |
1490 "src/arm64/assembler-arm64.h", | 1499 "src/arm64/assembler-arm64.h", |
1491 "src/arm64/assembler-arm64-inl.h", | |
1492 "src/arm64/builtins-arm64.cc", | 1500 "src/arm64/builtins-arm64.cc", |
| 1501 "src/arm64/code-stubs-arm64.cc", |
| 1502 "src/arm64/code-stubs-arm64.h", |
1493 "src/arm64/codegen-arm64.cc", | 1503 "src/arm64/codegen-arm64.cc", |
1494 "src/arm64/codegen-arm64.h", | 1504 "src/arm64/codegen-arm64.h", |
1495 "src/arm64/code-stubs-arm64.cc", | |
1496 "src/arm64/code-stubs-arm64.h", | |
1497 "src/arm64/constants-arm64.h", | 1505 "src/arm64/constants-arm64.h", |
1498 "src/arm64/cpu-arm64.cc", | 1506 "src/arm64/cpu-arm64.cc", |
| 1507 "src/arm64/decoder-arm64-inl.h", |
1499 "src/arm64/decoder-arm64.cc", | 1508 "src/arm64/decoder-arm64.cc", |
1500 "src/arm64/decoder-arm64.h", | 1509 "src/arm64/decoder-arm64.h", |
1501 "src/arm64/decoder-arm64-inl.h", | |
1502 "src/arm64/deoptimizer-arm64.cc", | 1510 "src/arm64/deoptimizer-arm64.cc", |
1503 "src/arm64/disasm-arm64.cc", | 1511 "src/arm64/disasm-arm64.cc", |
1504 "src/arm64/disasm-arm64.h", | 1512 "src/arm64/disasm-arm64.h", |
1505 "src/arm64/frames-arm64.cc", | 1513 "src/arm64/frames-arm64.cc", |
1506 "src/arm64/frames-arm64.h", | 1514 "src/arm64/frames-arm64.h", |
1507 "src/arm64/instructions-arm64.cc", | 1515 "src/arm64/instructions-arm64.cc", |
1508 "src/arm64/instructions-arm64.h", | 1516 "src/arm64/instructions-arm64.h", |
1509 "src/arm64/instrument-arm64.cc", | 1517 "src/arm64/instrument-arm64.cc", |
1510 "src/arm64/instrument-arm64.h", | 1518 "src/arm64/instrument-arm64.h", |
1511 "src/arm64/interface-descriptors-arm64.cc", | 1519 "src/arm64/interface-descriptors-arm64.cc", |
1512 "src/arm64/interface-descriptors-arm64.h", | 1520 "src/arm64/interface-descriptors-arm64.h", |
| 1521 "src/arm64/macro-assembler-arm64-inl.h", |
1513 "src/arm64/macro-assembler-arm64.cc", | 1522 "src/arm64/macro-assembler-arm64.cc", |
1514 "src/arm64/macro-assembler-arm64.h", | 1523 "src/arm64/macro-assembler-arm64.h", |
1515 "src/arm64/macro-assembler-arm64-inl.h", | |
1516 "src/arm64/simulator-arm64.cc", | 1524 "src/arm64/simulator-arm64.cc", |
1517 "src/arm64/simulator-arm64.h", | 1525 "src/arm64/simulator-arm64.h", |
1518 "src/arm64/utils-arm64.cc", | 1526 "src/arm64/utils-arm64.cc", |
1519 "src/arm64/utils-arm64.h", | 1527 "src/arm64/utils-arm64.h", |
1520 "src/compiler/arm64/code-generator-arm64.cc", | 1528 "src/compiler/arm64/code-generator-arm64.cc", |
1521 "src/compiler/arm64/instruction-codes-arm64.h", | 1529 "src/compiler/arm64/instruction-codes-arm64.h", |
1522 "src/compiler/arm64/instruction-scheduler-arm64.cc", | 1530 "src/compiler/arm64/instruction-scheduler-arm64.cc", |
1523 "src/compiler/arm64/instruction-selector-arm64.cc", | 1531 "src/compiler/arm64/instruction-selector-arm64.cc", |
| 1532 "src/crankshaft/arm64/delayed-masm-arm64-inl.h", |
1524 "src/crankshaft/arm64/delayed-masm-arm64.cc", | 1533 "src/crankshaft/arm64/delayed-masm-arm64.cc", |
1525 "src/crankshaft/arm64/delayed-masm-arm64.h", | 1534 "src/crankshaft/arm64/delayed-masm-arm64.h", |
1526 "src/crankshaft/arm64/delayed-masm-arm64-inl.h", | |
1527 "src/crankshaft/arm64/lithium-arm64.cc", | 1535 "src/crankshaft/arm64/lithium-arm64.cc", |
1528 "src/crankshaft/arm64/lithium-arm64.h", | 1536 "src/crankshaft/arm64/lithium-arm64.h", |
1529 "src/crankshaft/arm64/lithium-codegen-arm64.cc", | 1537 "src/crankshaft/arm64/lithium-codegen-arm64.cc", |
1530 "src/crankshaft/arm64/lithium-codegen-arm64.h", | 1538 "src/crankshaft/arm64/lithium-codegen-arm64.h", |
1531 "src/crankshaft/arm64/lithium-gap-resolver-arm64.cc", | 1539 "src/crankshaft/arm64/lithium-gap-resolver-arm64.cc", |
1532 "src/crankshaft/arm64/lithium-gap-resolver-arm64.h", | 1540 "src/crankshaft/arm64/lithium-gap-resolver-arm64.h", |
1533 "src/debug/arm64/debug-arm64.cc", | 1541 "src/debug/arm64/debug-arm64.cc", |
1534 "src/full-codegen/arm64/full-codegen-arm64.cc", | 1542 "src/full-codegen/arm64/full-codegen-arm64.cc", |
1535 "src/ic/arm64/access-compiler-arm64.cc", | 1543 "src/ic/arm64/access-compiler-arm64.cc", |
1536 "src/ic/arm64/handler-compiler-arm64.cc", | 1544 "src/ic/arm64/handler-compiler-arm64.cc", |
(...skipping 12 matching lines...) Expand all Loading... |
1549 "src/crankshaft/mips/lithium-codegen-mips.cc", | 1557 "src/crankshaft/mips/lithium-codegen-mips.cc", |
1550 "src/crankshaft/mips/lithium-codegen-mips.h", | 1558 "src/crankshaft/mips/lithium-codegen-mips.h", |
1551 "src/crankshaft/mips/lithium-gap-resolver-mips.cc", | 1559 "src/crankshaft/mips/lithium-gap-resolver-mips.cc", |
1552 "src/crankshaft/mips/lithium-gap-resolver-mips.h", | 1560 "src/crankshaft/mips/lithium-gap-resolver-mips.h", |
1553 "src/crankshaft/mips/lithium-mips.cc", | 1561 "src/crankshaft/mips/lithium-mips.cc", |
1554 "src/crankshaft/mips/lithium-mips.h", | 1562 "src/crankshaft/mips/lithium-mips.h", |
1555 "src/debug/mips/debug-mips.cc", | 1563 "src/debug/mips/debug-mips.cc", |
1556 "src/full-codegen/mips/full-codegen-mips.cc", | 1564 "src/full-codegen/mips/full-codegen-mips.cc", |
1557 "src/ic/mips/access-compiler-mips.cc", | 1565 "src/ic/mips/access-compiler-mips.cc", |
1558 "src/ic/mips/handler-compiler-mips.cc", | 1566 "src/ic/mips/handler-compiler-mips.cc", |
| 1567 "src/ic/mips/ic-compiler-mips.cc", |
1559 "src/ic/mips/ic-mips.cc", | 1568 "src/ic/mips/ic-mips.cc", |
1560 "src/ic/mips/ic-compiler-mips.cc", | |
1561 "src/ic/mips/stub-cache-mips.cc", | 1569 "src/ic/mips/stub-cache-mips.cc", |
| 1570 "src/mips/assembler-mips-inl.h", |
1562 "src/mips/assembler-mips.cc", | 1571 "src/mips/assembler-mips.cc", |
1563 "src/mips/assembler-mips.h", | 1572 "src/mips/assembler-mips.h", |
1564 "src/mips/assembler-mips-inl.h", | |
1565 "src/mips/builtins-mips.cc", | 1573 "src/mips/builtins-mips.cc", |
| 1574 "src/mips/code-stubs-mips.cc", |
| 1575 "src/mips/code-stubs-mips.h", |
1566 "src/mips/codegen-mips.cc", | 1576 "src/mips/codegen-mips.cc", |
1567 "src/mips/codegen-mips.h", | 1577 "src/mips/codegen-mips.h", |
1568 "src/mips/code-stubs-mips.cc", | |
1569 "src/mips/code-stubs-mips.h", | |
1570 "src/mips/constants-mips.cc", | 1578 "src/mips/constants-mips.cc", |
1571 "src/mips/constants-mips.h", | 1579 "src/mips/constants-mips.h", |
1572 "src/mips/cpu-mips.cc", | 1580 "src/mips/cpu-mips.cc", |
1573 "src/mips/deoptimizer-mips.cc", | 1581 "src/mips/deoptimizer-mips.cc", |
1574 "src/mips/disasm-mips.cc", | 1582 "src/mips/disasm-mips.cc", |
1575 "src/mips/frames-mips.cc", | 1583 "src/mips/frames-mips.cc", |
1576 "src/mips/frames-mips.h", | 1584 "src/mips/frames-mips.h", |
1577 "src/mips/interface-descriptors-mips.cc", | 1585 "src/mips/interface-descriptors-mips.cc", |
1578 "src/mips/macro-assembler-mips.cc", | 1586 "src/mips/macro-assembler-mips.cc", |
1579 "src/mips/macro-assembler-mips.h", | 1587 "src/mips/macro-assembler-mips.h", |
(...skipping 11 matching lines...) Expand all Loading... |
1591 "src/crankshaft/mips64/lithium-codegen-mips64.cc", | 1599 "src/crankshaft/mips64/lithium-codegen-mips64.cc", |
1592 "src/crankshaft/mips64/lithium-codegen-mips64.h", | 1600 "src/crankshaft/mips64/lithium-codegen-mips64.h", |
1593 "src/crankshaft/mips64/lithium-gap-resolver-mips64.cc", | 1601 "src/crankshaft/mips64/lithium-gap-resolver-mips64.cc", |
1594 "src/crankshaft/mips64/lithium-gap-resolver-mips64.h", | 1602 "src/crankshaft/mips64/lithium-gap-resolver-mips64.h", |
1595 "src/crankshaft/mips64/lithium-mips64.cc", | 1603 "src/crankshaft/mips64/lithium-mips64.cc", |
1596 "src/crankshaft/mips64/lithium-mips64.h", | 1604 "src/crankshaft/mips64/lithium-mips64.h", |
1597 "src/debug/mips64/debug-mips64.cc", | 1605 "src/debug/mips64/debug-mips64.cc", |
1598 "src/full-codegen/mips64/full-codegen-mips64.cc", | 1606 "src/full-codegen/mips64/full-codegen-mips64.cc", |
1599 "src/ic/mips64/access-compiler-mips64.cc", | 1607 "src/ic/mips64/access-compiler-mips64.cc", |
1600 "src/ic/mips64/handler-compiler-mips64.cc", | 1608 "src/ic/mips64/handler-compiler-mips64.cc", |
| 1609 "src/ic/mips64/ic-compiler-mips64.cc", |
1601 "src/ic/mips64/ic-mips64.cc", | 1610 "src/ic/mips64/ic-mips64.cc", |
1602 "src/ic/mips64/ic-compiler-mips64.cc", | |
1603 "src/ic/mips64/stub-cache-mips64.cc", | 1611 "src/ic/mips64/stub-cache-mips64.cc", |
| 1612 "src/mips64/assembler-mips64-inl.h", |
1604 "src/mips64/assembler-mips64.cc", | 1613 "src/mips64/assembler-mips64.cc", |
1605 "src/mips64/assembler-mips64.h", | 1614 "src/mips64/assembler-mips64.h", |
1606 "src/mips64/assembler-mips64-inl.h", | |
1607 "src/mips64/builtins-mips64.cc", | 1615 "src/mips64/builtins-mips64.cc", |
| 1616 "src/mips64/code-stubs-mips64.cc", |
| 1617 "src/mips64/code-stubs-mips64.h", |
1608 "src/mips64/codegen-mips64.cc", | 1618 "src/mips64/codegen-mips64.cc", |
1609 "src/mips64/codegen-mips64.h", | 1619 "src/mips64/codegen-mips64.h", |
1610 "src/mips64/code-stubs-mips64.cc", | |
1611 "src/mips64/code-stubs-mips64.h", | |
1612 "src/mips64/constants-mips64.cc", | 1620 "src/mips64/constants-mips64.cc", |
1613 "src/mips64/constants-mips64.h", | 1621 "src/mips64/constants-mips64.h", |
1614 "src/mips64/cpu-mips64.cc", | 1622 "src/mips64/cpu-mips64.cc", |
1615 "src/mips64/deoptimizer-mips64.cc", | 1623 "src/mips64/deoptimizer-mips64.cc", |
1616 "src/mips64/disasm-mips64.cc", | 1624 "src/mips64/disasm-mips64.cc", |
1617 "src/mips64/frames-mips64.cc", | 1625 "src/mips64/frames-mips64.cc", |
1618 "src/mips64/frames-mips64.h", | 1626 "src/mips64/frames-mips64.h", |
1619 "src/mips64/interface-descriptors-mips64.cc", | 1627 "src/mips64/interface-descriptors-mips64.cc", |
1620 "src/mips64/macro-assembler-mips64.cc", | 1628 "src/mips64/macro-assembler-mips64.cc", |
1621 "src/mips64/macro-assembler-mips64.h", | 1629 "src/mips64/macro-assembler-mips64.h", |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1673 source_set("v8_libbase") { | 1681 source_set("v8_libbase") { |
1674 visibility = [ ":*" ] # Only targets in this file can depend on this. | 1682 visibility = [ ":*" ] # Only targets in this file can depend on this. |
1675 | 1683 |
1676 sources = [ | 1684 sources = [ |
1677 "src/base/adapters.h", | 1685 "src/base/adapters.h", |
1678 "src/base/atomicops.h", | 1686 "src/base/atomicops.h", |
1679 "src/base/atomicops_internals_arm64_gcc.h", | 1687 "src/base/atomicops_internals_arm64_gcc.h", |
1680 "src/base/atomicops_internals_arm_gcc.h", | 1688 "src/base/atomicops_internals_arm_gcc.h", |
1681 "src/base/atomicops_internals_atomicword_compat.h", | 1689 "src/base/atomicops_internals_atomicword_compat.h", |
1682 "src/base/atomicops_internals_mac.h", | 1690 "src/base/atomicops_internals_mac.h", |
| 1691 "src/base/atomicops_internals_mips64_gcc.h", |
1683 "src/base/atomicops_internals_mips_gcc.h", | 1692 "src/base/atomicops_internals_mips_gcc.h", |
1684 "src/base/atomicops_internals_mips64_gcc.h", | |
1685 "src/base/atomicops_internals_portable.h", | 1693 "src/base/atomicops_internals_portable.h", |
1686 "src/base/atomicops_internals_s390_gcc.h", | 1694 "src/base/atomicops_internals_s390_gcc.h", |
1687 "src/base/atomicops_internals_tsan.h", | 1695 "src/base/atomicops_internals_tsan.h", |
1688 "src/base/atomicops_internals_x86_gcc.cc", | 1696 "src/base/atomicops_internals_x86_gcc.cc", |
1689 "src/base/atomicops_internals_x86_gcc.h", | 1697 "src/base/atomicops_internals_x86_gcc.h", |
1690 "src/base/atomicops_internals_x86_msvc.h", | 1698 "src/base/atomicops_internals_x86_msvc.h", |
1691 "src/base/bits.cc", | 1699 "src/base/bits.cc", |
1692 "src/base/bits.h", | 1700 "src/base/bits.h", |
1693 "src/base/build_config.h", | 1701 "src/base/build_config.h", |
1694 "src/base/cpu.cc", | 1702 "src/base/cpu.cc", |
1695 "src/base/cpu.h", | 1703 "src/base/cpu.h", |
1696 "src/base/division-by-constant.cc", | 1704 "src/base/division-by-constant.cc", |
1697 "src/base/division-by-constant.h", | 1705 "src/base/division-by-constant.h", |
1698 "src/base/flags.h", | 1706 "src/base/flags.h", |
1699 "src/base/functional.cc", | 1707 "src/base/functional.cc", |
1700 "src/base/functional.h", | 1708 "src/base/functional.h", |
1701 "src/base/iterator.h", | 1709 "src/base/iterator.h", |
1702 "src/base/lazy-instance.h", | 1710 "src/base/lazy-instance.h", |
1703 "src/base/logging.cc", | 1711 "src/base/logging.cc", |
1704 "src/base/logging.h", | 1712 "src/base/logging.h", |
1705 "src/base/macros.h", | 1713 "src/base/macros.h", |
1706 "src/base/once.cc", | 1714 "src/base/once.cc", |
1707 "src/base/once.h", | 1715 "src/base/once.h", |
1708 "src/base/platform/elapsed-timer.h", | |
1709 "src/base/platform/time.cc", | |
1710 "src/base/platform/time.h", | |
1711 "src/base/platform/condition-variable.cc", | 1716 "src/base/platform/condition-variable.cc", |
1712 "src/base/platform/condition-variable.h", | 1717 "src/base/platform/condition-variable.h", |
| 1718 "src/base/platform/elapsed-timer.h", |
1713 "src/base/platform/mutex.cc", | 1719 "src/base/platform/mutex.cc", |
1714 "src/base/platform/mutex.h", | 1720 "src/base/platform/mutex.h", |
1715 "src/base/platform/platform.h", | 1721 "src/base/platform/platform.h", |
1716 "src/base/platform/semaphore.cc", | 1722 "src/base/platform/semaphore.cc", |
1717 "src/base/platform/semaphore.h", | 1723 "src/base/platform/semaphore.h", |
| 1724 "src/base/platform/time.cc", |
| 1725 "src/base/platform/time.h", |
1718 "src/base/safe_conversions.h", | 1726 "src/base/safe_conversions.h", |
1719 "src/base/safe_conversions_impl.h", | 1727 "src/base/safe_conversions_impl.h", |
1720 "src/base/safe_math.h", | 1728 "src/base/safe_math.h", |
1721 "src/base/safe_math_impl.h", | 1729 "src/base/safe_math_impl.h", |
1722 "src/base/smart-pointers.h", | 1730 "src/base/smart-pointers.h", |
1723 "src/base/sys-info.cc", | 1731 "src/base/sys-info.cc", |
1724 "src/base/sys-info.h", | 1732 "src/base/sys-info.h", |
1725 "src/base/utils/random-number-generator.cc", | 1733 "src/base/utils/random-number-generator.cc", |
1726 "src/base/utils/random-number-generator.h", | 1734 "src/base/utils/random-number-generator.h", |
1727 ] | 1735 ] |
(...skipping 13 matching lines...) Expand all Loading... |
1741 | 1749 |
1742 defines = [] | 1750 defines = [] |
1743 | 1751 |
1744 if (is_posix) { | 1752 if (is_posix) { |
1745 sources += [ "src/base/platform/platform-posix.cc" ] | 1753 sources += [ "src/base/platform/platform-posix.cc" ] |
1746 } | 1754 } |
1747 | 1755 |
1748 if (is_linux) { | 1756 if (is_linux) { |
1749 sources += [ "src/base/platform/platform-linux.cc" ] | 1757 sources += [ "src/base/platform/platform-linux.cc" ] |
1750 | 1758 |
1751 libs = [ "dl", "rt" ] | 1759 libs = [ |
| 1760 "dl", |
| 1761 "rt", |
| 1762 ] |
1752 } else if (is_android) { | 1763 } else if (is_android) { |
1753 if (current_toolchain == host_toolchain) { | 1764 if (current_toolchain == host_toolchain) { |
1754 libs = [ "dl", "rt" ] | 1765 libs = [ |
| 1766 "dl", |
| 1767 "rt", |
| 1768 ] |
1755 if (host_os == "mac") { | 1769 if (host_os == "mac") { |
1756 sources += [ "src/base/platform/platform-macos.cc" ] | 1770 sources += [ "src/base/platform/platform-macos.cc" ] |
1757 } else { | 1771 } else { |
1758 sources += [ "src/base/platform/platform-linux.cc" ] | 1772 sources += [ "src/base/platform/platform-linux.cc" ] |
1759 } | 1773 } |
1760 } else { | 1774 } else { |
1761 sources += [ "src/base/platform/platform-linux.cc" ] | 1775 sources += [ "src/base/platform/platform-linux.cc" ] |
1762 } | 1776 } |
1763 } else if (is_mac) { | 1777 } else if (is_mac) { |
1764 sources += [ "src/base/platform/platform-macos.cc" ] | 1778 sources += [ "src/base/platform/platform-macos.cc" ] |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1929 | 1943 |
1930 # TODO(jochen): Add support for vtunejit. | 1944 # TODO(jochen): Add support for vtunejit. |
1931 | 1945 |
1932 if (is_posix) { | 1946 if (is_posix) { |
1933 sources += [ "src/d8-posix.cc" ] | 1947 sources += [ "src/d8-posix.cc" ] |
1934 } else if (is_win) { | 1948 } else if (is_win) { |
1935 sources += [ "src/d8-windows.cc" ] | 1949 sources += [ "src/d8-windows.cc" ] |
1936 } | 1950 } |
1937 | 1951 |
1938 if (!is_component_build) { | 1952 if (!is_component_build) { |
1939 sources += [ | 1953 sources += [ "$target_gen_dir/d8-js.cc" ] |
1940 "$target_gen_dir/d8-js.cc", | |
1941 ] | |
1942 } | 1954 } |
1943 if (v8_enable_i18n_support) { | 1955 if (v8_enable_i18n_support) { |
1944 deps += [ "//third_party/icu" ] | 1956 deps += [ "//third_party/icu" ] |
1945 } | 1957 } |
1946 } | 1958 } |
1947 } | 1959 } |
1948 | 1960 |
1949 source_set("json_fuzzer") { | 1961 source_set("json_fuzzer") { |
1950 sources = [ | 1962 sources = [ |
1951 "test/fuzzer/json.cc", | 1963 "test/fuzzer/json.cc", |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1992 ] | 2004 ] |
1993 | 2005 |
1994 configs -= [ "//build/config/compiler:chromium_code" ] | 2006 configs -= [ "//build/config/compiler:chromium_code" ] |
1995 configs += [ "//build/config/compiler:no_chromium_code" ] | 2007 configs += [ "//build/config/compiler:no_chromium_code" ] |
1996 configs += [ | 2008 configs += [ |
1997 ":internal_config", | 2009 ":internal_config", |
1998 ":features", | 2010 ":features", |
1999 ":toolchain", | 2011 ":toolchain", |
2000 ] | 2012 ] |
2001 } | 2013 } |
OLD | NEW |