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

Side by Side Diff: BUILD.gn

Issue 1518703002: Re-re-land FastAccessorBuilder. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add test restrictions, as for test-api-fast-accessor-builder 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",
599 "include/v8-platform.h", 600 "include/v8-platform.h",
600 "include/v8-profiler.h", 601 "include/v8-profiler.h",
601 "include/v8-testing.h", 602 "include/v8-testing.h",
602 "include/v8-util.h", 603 "include/v8-util.h",
603 "include/v8-version.h", 604 "include/v8-version.h",
604 "include/v8.h", 605 "include/v8.h",
605 "include/v8config.h", 606 "include/v8config.h",
606 "src/accessors.cc", 607 "src/accessors.cc",
607 "src/accessors.h", 608 "src/accessors.h",
608 "src/address-map.cc", 609 "src/address-map.cc",
609 "src/address-map.h", 610 "src/address-map.h",
610 "src/allocation.cc", 611 "src/allocation.cc",
611 "src/allocation.h", 612 "src/allocation.h",
612 "src/allocation-site-scopes.cc", 613 "src/allocation-site-scopes.cc",
613 "src/allocation-site-scopes.h", 614 "src/allocation-site-scopes.h",
614 "src/api.cc", 615 "src/api.cc",
615 "src/api.h", 616 "src/api.h",
617 "src/api-experimental.cc",
618 "src/api-experimental.h",
616 "src/api-natives.cc", 619 "src/api-natives.cc",
617 "src/api-natives.h", 620 "src/api-natives.h",
618 "src/arguments.cc", 621 "src/arguments.cc",
619 "src/arguments.h", 622 "src/arguments.h",
620 "src/assembler.cc", 623 "src/assembler.cc",
621 "src/assembler.h", 624 "src/assembler.h",
622 "src/assert-scope.h", 625 "src/assert-scope.h",
623 "src/assert-scope.cc", 626 "src/assert-scope.cc",
624 "src/ast/ast-expression-visitor.cc", 627 "src/ast/ast-expression-visitor.cc",
625 "src/ast/ast-expression-visitor.h", 628 "src/ast/ast-expression-visitor.h",
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
717 "src/compiler/control-equivalence.h", 720 "src/compiler/control-equivalence.h",
718 "src/compiler/control-flow-optimizer.cc", 721 "src/compiler/control-flow-optimizer.cc",
719 "src/compiler/control-flow-optimizer.h", 722 "src/compiler/control-flow-optimizer.h",
720 "src/compiler/dead-code-elimination.cc", 723 "src/compiler/dead-code-elimination.cc",
721 "src/compiler/dead-code-elimination.h", 724 "src/compiler/dead-code-elimination.h",
722 "src/compiler/diamond.h", 725 "src/compiler/diamond.h",
723 "src/compiler/escape-analysis.cc", 726 "src/compiler/escape-analysis.cc",
724 "src/compiler/escape-analysis.h", 727 "src/compiler/escape-analysis.h",
725 "src/compiler/escape-analysis-reducer.cc", 728 "src/compiler/escape-analysis-reducer.cc",
726 "src/compiler/escape-analysis-reducer.h", 729 "src/compiler/escape-analysis-reducer.h",
730 "src/compiler/fast-accessor-assembler.cc",
731 "src/compiler/fast-accessor-assembler.h",
727 "src/compiler/frame.cc", 732 "src/compiler/frame.cc",
728 "src/compiler/frame.h", 733 "src/compiler/frame.h",
729 "src/compiler/frame-elider.cc", 734 "src/compiler/frame-elider.cc",
730 "src/compiler/frame-elider.h", 735 "src/compiler/frame-elider.h",
731 "src/compiler/frame-states.cc", 736 "src/compiler/frame-states.cc",
732 "src/compiler/frame-states.h", 737 "src/compiler/frame-states.h",
733 "src/compiler/gap-resolver.cc", 738 "src/compiler/gap-resolver.cc",
734 "src/compiler/gap-resolver.h", 739 "src/compiler/gap-resolver.h",
735 "src/compiler/graph-reducer.cc", 740 "src/compiler/graph-reducer.cc",
736 "src/compiler/graph-reducer.h", 741 "src/compiler/graph-reducer.h",
(...skipping 1099 matching lines...) Expand 10 before | Expand all | Expand 10 after
1836 if (!is_component_build) { 1841 if (!is_component_build) {
1837 sources += [ 1842 sources += [
1838 "$target_gen_dir/d8-js.cc", 1843 "$target_gen_dir/d8-js.cc",
1839 ] 1844 ]
1840 } 1845 }
1841 if (v8_enable_i18n_support) { 1846 if (v8_enable_i18n_support) {
1842 deps += [ "//third_party/icu" ] 1847 deps += [ "//third_party/icu" ]
1843 } 1848 }
1844 } 1849 }
1845 } 1850 }
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