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

Side by Side Diff: BUILD.gn

Issue 1170153003: [destructuring] Refactor duplicate parameter name detection. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebased Created 5 years, 6 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/expression-classifier.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 764 matching lines...) Expand 10 before | Expand all | Expand 10 after
775 "src/double.h", 775 "src/double.h",
776 "src/dtoa.cc", 776 "src/dtoa.cc",
777 "src/dtoa.h", 777 "src/dtoa.h",
778 "src/effects.h", 778 "src/effects.h",
779 "src/elements-kind.cc", 779 "src/elements-kind.cc",
780 "src/elements-kind.h", 780 "src/elements-kind.h",
781 "src/elements.cc", 781 "src/elements.cc",
782 "src/elements.h", 782 "src/elements.h",
783 "src/execution.cc", 783 "src/execution.cc",
784 "src/execution.h", 784 "src/execution.h",
785 "src/expression-classifier.h",
785 "src/extensions/externalize-string-extension.cc", 786 "src/extensions/externalize-string-extension.cc",
786 "src/extensions/externalize-string-extension.h", 787 "src/extensions/externalize-string-extension.h",
787 "src/extensions/free-buffer-extension.cc", 788 "src/extensions/free-buffer-extension.cc",
788 "src/extensions/free-buffer-extension.h", 789 "src/extensions/free-buffer-extension.h",
789 "src/extensions/gc-extension.cc", 790 "src/extensions/gc-extension.cc",
790 "src/extensions/gc-extension.h", 791 "src/extensions/gc-extension.h",
791 "src/extensions/statistics-extension.cc", 792 "src/extensions/statistics-extension.cc",
792 "src/extensions/statistics-extension.h", 793 "src/extensions/statistics-extension.h",
793 "src/extensions/trigger-failure-extension.cc", 794 "src/extensions/trigger-failure-extension.cc",
794 "src/extensions/trigger-failure-extension.h", 795 "src/extensions/trigger-failure-extension.h",
(...skipping 883 matching lines...) Expand 10 before | Expand all | Expand 10 after
1678 sources += [ 1679 sources += [
1679 "src/d8-debug.cc", 1680 "src/d8-debug.cc",
1680 "$target_gen_dir/d8-js.cc", 1681 "$target_gen_dir/d8-js.cc",
1681 ] 1682 ]
1682 } 1683 }
1683 if (v8_enable_i18n_support) { 1684 if (v8_enable_i18n_support) {
1684 deps += [ "//third_party/icu" ] 1685 deps += [ "//third_party/icu" ]
1685 } 1686 }
1686 } 1687 }
1687 } 1688 }
OLDNEW
« no previous file with comments | « no previous file | src/expression-classifier.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698