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

Side by Side Diff: BUILD.gn

Issue 1405313002: [es6] Fix scoping for default parameters in arrow functions (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix class literal handling Created 5 years, 2 months 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 | src/ast.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 # Because standalone V8 builds are not supported, assume this is part of a 10 # Because standalone V8 builds are not supported, assume this is part of a
(...skipping 1081 matching lines...) Expand 10 before | Expand all | Expand 10 after
1092 "src/msan.h", 1092 "src/msan.h",
1093 "src/objects-debug.cc", 1093 "src/objects-debug.cc",
1094 "src/objects-inl.h", 1094 "src/objects-inl.h",
1095 "src/objects-printer.cc", 1095 "src/objects-printer.cc",
1096 "src/objects.cc", 1096 "src/objects.cc",
1097 "src/objects.h", 1097 "src/objects.h",
1098 "src/optimizing-compile-dispatcher.cc", 1098 "src/optimizing-compile-dispatcher.cc",
1099 "src/optimizing-compile-dispatcher.h", 1099 "src/optimizing-compile-dispatcher.h",
1100 "src/ostreams.cc", 1100 "src/ostreams.cc",
1101 "src/ostreams.h", 1101 "src/ostreams.h",
1102 "src/pattern-rewriter.cc", 1102 "src/parameter-initializer-rewriter.cc",
1103 "src/parameter-initializer-rewriter.h",
1103 "src/parser.cc", 1104 "src/parser.cc",
1104 "src/parser.h", 1105 "src/parser.h",
1106 "src/pattern-rewriter.cc",
1105 "src/pending-compilation-error-handler.cc", 1107 "src/pending-compilation-error-handler.cc",
1106 "src/pending-compilation-error-handler.h", 1108 "src/pending-compilation-error-handler.h",
1107 "src/preparse-data-format.h", 1109 "src/preparse-data-format.h",
1108 "src/preparse-data.cc", 1110 "src/preparse-data.cc",
1109 "src/preparse-data.h", 1111 "src/preparse-data.h",
1110 "src/preparser.cc", 1112 "src/preparser.cc",
1111 "src/preparser.h", 1113 "src/preparser.h",
1112 "src/prettyprinter.cc", 1114 "src/prettyprinter.cc",
1113 "src/prettyprinter.h", 1115 "src/prettyprinter.h",
1114 "src/profiler/allocation-tracker.cc", 1116 "src/profiler/allocation-tracker.cc",
(...skipping 711 matching lines...) Expand 10 before | Expand all | Expand 10 after
1826 if (!is_component_build) { 1828 if (!is_component_build) {
1827 sources += [ 1829 sources += [
1828 "$target_gen_dir/d8-js.cc", 1830 "$target_gen_dir/d8-js.cc",
1829 ] 1831 ]
1830 } 1832 }
1831 if (v8_enable_i18n_support) { 1833 if (v8_enable_i18n_support) {
1832 deps += [ "//third_party/icu" ] 1834 deps += [ "//third_party/icu" ]
1833 } 1835 }
1834 } 1836 }
1835 } 1837 }
OLDNEW
« no previous file with comments | « no previous file | src/ast.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698