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

Side by Side Diff: BUILD.gn

Issue 1513203002: Revert of Implement Fast Accessor Builder (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years 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 | include/v8.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 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 578 matching lines...) Expand 10 before | Expand all | Expand 10 after
589 ":toolchain", 589 ":toolchain",
590 ] 590 ]
591 } 591 }
592 } 592 }
593 593
594 source_set("v8_base") { 594 source_set("v8_base") {
595 visibility = [ ":*" ] # Only targets in this file can depend on this. 595 visibility = [ ":*" ] # Only targets in this file can depend on this.
596 596
597 sources = [ 597 sources = [
598 "include/v8-debug.h", 598 "include/v8-debug.h",
599 "include/v8-experimental.h",
600 "include/v8-platform.h", 599 "include/v8-platform.h",
601 "include/v8-profiler.h", 600 "include/v8-profiler.h",
602 "include/v8-testing.h", 601 "include/v8-testing.h",
603 "include/v8-util.h", 602 "include/v8-util.h",
604 "include/v8-version.h", 603 "include/v8-version.h",
605 "include/v8.h", 604 "include/v8.h",
606 "include/v8config.h", 605 "include/v8config.h",
607 "src/accessors.cc", 606 "src/accessors.cc",
608 "src/accessors.h", 607 "src/accessors.h",
609 "src/address-map.cc", 608 "src/address-map.cc",
610 "src/address-map.h", 609 "src/address-map.h",
611 "src/allocation.cc", 610 "src/allocation.cc",
612 "src/allocation.h", 611 "src/allocation.h",
613 "src/allocation-site-scopes.cc", 612 "src/allocation-site-scopes.cc",
614 "src/allocation-site-scopes.h", 613 "src/allocation-site-scopes.h",
615 "src/api.cc", 614 "src/api.cc",
616 "src/api.h", 615 "src/api.h",
617 "src/api-experimental.cc",
618 "src/api-experimental.h",
619 "src/api-natives.cc", 616 "src/api-natives.cc",
620 "src/api-natives.h", 617 "src/api-natives.h",
621 "src/arguments.cc", 618 "src/arguments.cc",
622 "src/arguments.h", 619 "src/arguments.h",
623 "src/assembler.cc", 620 "src/assembler.cc",
624 "src/assembler.h", 621 "src/assembler.h",
625 "src/assert-scope.h", 622 "src/assert-scope.h",
626 "src/assert-scope.cc", 623 "src/assert-scope.cc",
627 "src/ast/ast-expression-visitor.cc", 624 "src/ast/ast-expression-visitor.cc",
628 "src/ast/ast-expression-visitor.h", 625 "src/ast/ast-expression-visitor.h",
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
720 "src/compiler/control-equivalence.h", 717 "src/compiler/control-equivalence.h",
721 "src/compiler/control-flow-optimizer.cc", 718 "src/compiler/control-flow-optimizer.cc",
722 "src/compiler/control-flow-optimizer.h", 719 "src/compiler/control-flow-optimizer.h",
723 "src/compiler/dead-code-elimination.cc", 720 "src/compiler/dead-code-elimination.cc",
724 "src/compiler/dead-code-elimination.h", 721 "src/compiler/dead-code-elimination.h",
725 "src/compiler/diamond.h", 722 "src/compiler/diamond.h",
726 "src/compiler/escape-analysis.cc", 723 "src/compiler/escape-analysis.cc",
727 "src/compiler/escape-analysis.h", 724 "src/compiler/escape-analysis.h",
728 "src/compiler/escape-analysis-reducer.cc", 725 "src/compiler/escape-analysis-reducer.cc",
729 "src/compiler/escape-analysis-reducer.h", 726 "src/compiler/escape-analysis-reducer.h",
730 "src/compiler/fast-accessor-assembler.cc",
731 "src/compiler/fast-accessor-assembler.h",
732 "src/compiler/frame.cc", 727 "src/compiler/frame.cc",
733 "src/compiler/frame.h", 728 "src/compiler/frame.h",
734 "src/compiler/frame-elider.cc", 729 "src/compiler/frame-elider.cc",
735 "src/compiler/frame-elider.h", 730 "src/compiler/frame-elider.h",
736 "src/compiler/frame-states.cc", 731 "src/compiler/frame-states.cc",
737 "src/compiler/frame-states.h", 732 "src/compiler/frame-states.h",
738 "src/compiler/gap-resolver.cc", 733 "src/compiler/gap-resolver.cc",
739 "src/compiler/gap-resolver.h", 734 "src/compiler/gap-resolver.h",
740 "src/compiler/graph-reducer.cc", 735 "src/compiler/graph-reducer.cc",
741 "src/compiler/graph-reducer.h", 736 "src/compiler/graph-reducer.h",
(...skipping 1099 matching lines...) Expand 10 before | Expand all | Expand 10 after
1841 if (!is_component_build) { 1836 if (!is_component_build) {
1842 sources += [ 1837 sources += [
1843 "$target_gen_dir/d8-js.cc", 1838 "$target_gen_dir/d8-js.cc",
1844 ] 1839 ]
1845 } 1840 }
1846 if (v8_enable_i18n_support) { 1841 if (v8_enable_i18n_support) {
1847 deps += [ "//third_party/icu" ] 1842 deps += [ "//third_party/icu" ]
1848 } 1843 }
1849 } 1844 }
1850 } 1845 }
OLDNEW
« no previous file with comments | « no previous file | include/v8.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698