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

Side by Side Diff: BUILD.gn

Issue 1474543004: Implement Fast Accessor Builder (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Review feedback. 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') | include/v8.h » ('J')
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 620 matching lines...) Expand 10 before | Expand all | Expand 10 after
631 ":toolchain", 631 ":toolchain",
632 ] 632 ]
633 } 633 }
634 } 634 }
635 635
636 source_set("v8_base") { 636 source_set("v8_base") {
637 visibility = [ ":*" ] # Only targets in this file can depend on this. 637 visibility = [ ":*" ] # Only targets in this file can depend on this.
638 638
639 sources = [ 639 sources = [
640 "include/v8-debug.h", 640 "include/v8-debug.h",
641 "include/v8-experimental.h",
641 "include/v8-platform.h", 642 "include/v8-platform.h",
642 "include/v8-profiler.h", 643 "include/v8-profiler.h",
643 "include/v8-testing.h", 644 "include/v8-testing.h",
644 "include/v8-util.h", 645 "include/v8-util.h",
645 "include/v8-version.h", 646 "include/v8-version.h",
646 "include/v8.h", 647 "include/v8.h",
647 "include/v8config.h", 648 "include/v8config.h",
648 "src/accessors.cc", 649 "src/accessors.cc",
649 "src/accessors.h", 650 "src/accessors.h",
650 "src/address-map.cc", 651 "src/address-map.cc",
651 "src/address-map.h", 652 "src/address-map.h",
652 "src/allocation.cc", 653 "src/allocation.cc",
653 "src/allocation.h", 654 "src/allocation.h",
654 "src/allocation-site-scopes.cc", 655 "src/allocation-site-scopes.cc",
655 "src/allocation-site-scopes.h", 656 "src/allocation-site-scopes.h",
656 "src/api.cc", 657 "src/api.cc",
657 "src/api.h", 658 "src/api.h",
659 "src/api-experimental.cc",
660 "src/api-experimental.h",
658 "src/api-natives.cc", 661 "src/api-natives.cc",
659 "src/api-natives.h", 662 "src/api-natives.h",
660 "src/arguments.cc", 663 "src/arguments.cc",
661 "src/arguments.h", 664 "src/arguments.h",
662 "src/assembler.cc", 665 "src/assembler.cc",
663 "src/assembler.h", 666 "src/assembler.h",
664 "src/assert-scope.h", 667 "src/assert-scope.h",
665 "src/assert-scope.cc", 668 "src/assert-scope.cc",
666 "src/ast/ast-expression-visitor.cc", 669 "src/ast/ast-expression-visitor.cc",
667 "src/ast/ast-expression-visitor.h", 670 "src/ast/ast-expression-visitor.h",
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
757 "src/compiler/control-equivalence.h", 760 "src/compiler/control-equivalence.h",
758 "src/compiler/control-flow-optimizer.cc", 761 "src/compiler/control-flow-optimizer.cc",
759 "src/compiler/control-flow-optimizer.h", 762 "src/compiler/control-flow-optimizer.h",
760 "src/compiler/dead-code-elimination.cc", 763 "src/compiler/dead-code-elimination.cc",
761 "src/compiler/dead-code-elimination.h", 764 "src/compiler/dead-code-elimination.h",
762 "src/compiler/diamond.h", 765 "src/compiler/diamond.h",
763 "src/compiler/escape-analysis.cc", 766 "src/compiler/escape-analysis.cc",
764 "src/compiler/escape-analysis.h", 767 "src/compiler/escape-analysis.h",
765 "src/compiler/escape-analysis-reducer.cc", 768 "src/compiler/escape-analysis-reducer.cc",
766 "src/compiler/escape-analysis-reducer.h", 769 "src/compiler/escape-analysis-reducer.h",
770 "src/compiler/fast-accessor-assembler.cc",
771 "src/compiler/fast-accessor-assembler.h",
767 "src/compiler/frame.cc", 772 "src/compiler/frame.cc",
768 "src/compiler/frame.h", 773 "src/compiler/frame.h",
769 "src/compiler/frame-elider.cc", 774 "src/compiler/frame-elider.cc",
770 "src/compiler/frame-elider.h", 775 "src/compiler/frame-elider.h",
771 "src/compiler/frame-states.cc", 776 "src/compiler/frame-states.cc",
772 "src/compiler/frame-states.h", 777 "src/compiler/frame-states.h",
773 "src/compiler/gap-resolver.cc", 778 "src/compiler/gap-resolver.cc",
774 "src/compiler/gap-resolver.h", 779 "src/compiler/gap-resolver.h",
775 "src/compiler/graph-reducer.cc", 780 "src/compiler/graph-reducer.cc",
776 "src/compiler/graph-reducer.h", 781 "src/compiler/graph-reducer.h",
(...skipping 1099 matching lines...) Expand 10 before | Expand all | Expand 10 after
1876 if (!is_component_build) { 1881 if (!is_component_build) {
1877 sources += [ 1882 sources += [
1878 "$target_gen_dir/d8-js.cc", 1883 "$target_gen_dir/d8-js.cc",
1879 ] 1884 ]
1880 } 1885 }
1881 if (v8_enable_i18n_support) { 1886 if (v8_enable_i18n_support) {
1882 deps += [ "//third_party/icu" ] 1887 deps += [ "//third_party/icu" ]
1883 } 1888 }
1884 } 1889 }
1885 } 1890 }
OLDNEW
« no previous file with comments | « no previous file | include/v8.h » ('j') | include/v8.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698