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

Side by Side Diff: BUILD.gn

Issue 683243005: convert BitVector to use pointer size blocks (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | src/bit-vector.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 432 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 "src/background-parsing-task.cc", 443 "src/background-parsing-task.cc",
444 "src/background-parsing-task.h", 444 "src/background-parsing-task.h",
445 "src/bailout-reason.cc", 445 "src/bailout-reason.cc",
446 "src/bailout-reason.h", 446 "src/bailout-reason.h",
447 "src/basic-block-profiler.cc", 447 "src/basic-block-profiler.cc",
448 "src/basic-block-profiler.h", 448 "src/basic-block-profiler.h",
449 "src/bignum-dtoa.cc", 449 "src/bignum-dtoa.cc",
450 "src/bignum-dtoa.h", 450 "src/bignum-dtoa.h",
451 "src/bignum.cc", 451 "src/bignum.cc",
452 "src/bignum.h", 452 "src/bignum.h",
453 "src/bit-vector.cc",
454 "src/bit-vector.h",
453 "src/bootstrapper.cc", 455 "src/bootstrapper.cc",
454 "src/bootstrapper.h", 456 "src/bootstrapper.h",
455 "src/builtins.cc", 457 "src/builtins.cc",
456 "src/builtins.h", 458 "src/builtins.h",
457 "src/bytecodes-irregexp.h", 459 "src/bytecodes-irregexp.h",
458 "src/cached-powers.cc", 460 "src/cached-powers.cc",
459 "src/cached-powers.h", 461 "src/cached-powers.h",
460 "src/char-predicates.cc", 462 "src/char-predicates.cc",
461 "src/char-predicates-inl.h", 463 "src/char-predicates-inl.h",
462 "src/char-predicates.h", 464 "src/char-predicates.h",
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
596 "src/contexts.cc", 598 "src/contexts.cc",
597 "src/contexts.h", 599 "src/contexts.h",
598 "src/conversions-inl.h", 600 "src/conversions-inl.h",
599 "src/conversions.cc", 601 "src/conversions.cc",
600 "src/conversions.h", 602 "src/conversions.h",
601 "src/counters.cc", 603 "src/counters.cc",
602 "src/counters.h", 604 "src/counters.h",
603 "src/cpu-profiler-inl.h", 605 "src/cpu-profiler-inl.h",
604 "src/cpu-profiler.cc", 606 "src/cpu-profiler.cc",
605 "src/cpu-profiler.h", 607 "src/cpu-profiler.h",
606 "src/data-flow.cc",
607 "src/data-flow.h",
608 "src/date.cc", 608 "src/date.cc",
609 "src/date.h", 609 "src/date.h",
610 "src/dateparser-inl.h", 610 "src/dateparser-inl.h",
611 "src/dateparser.cc", 611 "src/dateparser.cc",
612 "src/dateparser.h", 612 "src/dateparser.h",
613 "src/debug.cc", 613 "src/debug.cc",
614 "src/debug.h", 614 "src/debug.h",
615 "src/deoptimizer.cc", 615 "src/deoptimizer.cc",
616 "src/deoptimizer.h", 616 "src/deoptimizer.h",
617 "src/disasm.h", 617 "src/disasm.h",
(...skipping 829 matching lines...) Expand 10 before | Expand all | Expand 10 after
1447 deps = [ 1447 deps = [
1448 ":v8_base", 1448 ":v8_base",
1449 ":v8_nosnapshot", 1449 ":v8_nosnapshot",
1450 ] 1450 ]
1451 } 1451 }
1452 1452
1453 direct_dependent_configs = [ ":external_config" ] 1453 direct_dependent_configs = [ ":external_config" ]
1454 } 1454 }
1455 1455
1456 } 1456 }
OLDNEW
« no previous file with comments | « no previous file | src/bit-vector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698