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

Side by Side Diff: BUILD.gn

Issue 1130623004: [destructuring] Implement basic binding destructuring infrastructure (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Patch for landing Created 5 years, 7 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/parser.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 8
9 # Because standalone V8 builds are not supported, assume this is part of a 9 # Because standalone V8 builds are not supported, assume this is part of a
10 # Chromium build. 10 # Chromium build.
(...skipping 940 matching lines...) Expand 10 before | Expand all | Expand 10 after
951 "src/msan.h", 951 "src/msan.h",
952 "src/objects-debug.cc", 952 "src/objects-debug.cc",
953 "src/objects-inl.h", 953 "src/objects-inl.h",
954 "src/objects-printer.cc", 954 "src/objects-printer.cc",
955 "src/objects.cc", 955 "src/objects.cc",
956 "src/objects.h", 956 "src/objects.h",
957 "src/optimizing-compile-dispatcher.cc", 957 "src/optimizing-compile-dispatcher.cc",
958 "src/optimizing-compile-dispatcher.h", 958 "src/optimizing-compile-dispatcher.h",
959 "src/ostreams.cc", 959 "src/ostreams.cc",
960 "src/ostreams.h", 960 "src/ostreams.h",
961 "src/pattern-rewriter.cc",
962 "src/pattern-rewriter.h",
961 "src/parser.cc", 963 "src/parser.cc",
962 "src/parser.h", 964 "src/parser.h",
963 "src/pending-compilation-error-handler.cc", 965 "src/pending-compilation-error-handler.cc",
964 "src/pending-compilation-error-handler.h", 966 "src/pending-compilation-error-handler.h",
965 "src/perf-jit.cc", 967 "src/perf-jit.cc",
966 "src/perf-jit.h", 968 "src/perf-jit.h",
967 "src/preparse-data-format.h", 969 "src/preparse-data-format.h",
968 "src/preparse-data.cc", 970 "src/preparse-data.cc",
969 "src/preparse-data.h", 971 "src/preparse-data.h",
970 "src/preparser.cc", 972 "src/preparser.cc",
(...skipping 690 matching lines...) Expand 10 before | Expand all | Expand 10 after
1661 sources += [ 1663 sources += [
1662 "src/d8-debug.cc", 1664 "src/d8-debug.cc",
1663 "$target_gen_dir/d8-js.cc", 1665 "$target_gen_dir/d8-js.cc",
1664 ] 1666 ]
1665 } 1667 }
1666 if (v8_enable_i18n_support) { 1668 if (v8_enable_i18n_support) {
1667 deps += [ "//third_party/icu" ] 1669 deps += [ "//third_party/icu" ]
1668 } 1670 }
1669 } 1671 }
1670 } 1672 }
OLDNEW
« no previous file with comments | « no previous file | src/parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698