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

Side by Side Diff: BUILD.gn

Issue 943543002: [strong] Declaration-after-use errors. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: more fixes + tests Created 5 years, 10 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') | src/ast.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 # Because standalone V8 builds are not supported, assume this is part of a 5 # Because standalone V8 builds are not supported, assume this is part of a
6 # Chromium build. 6 # Chromium build.
7 import("//build/module_args/v8.gni") 7 import("//build/module_args/v8.gni")
8 8
9 # TODO(jochen): These will need to be user-settable to support standalone V8 9 # TODO(jochen): These will need to be user-settable to support standalone V8
10 # builds. 10 # builds.
(...skipping 842 matching lines...) Expand 10 before | Expand all | Expand 10 after
853 "src/objects.cc", 853 "src/objects.cc",
854 "src/objects.h", 854 "src/objects.h",
855 "src/optimizing-compiler-thread.cc", 855 "src/optimizing-compiler-thread.cc",
856 "src/optimizing-compiler-thread.h", 856 "src/optimizing-compiler-thread.h",
857 "src/ostreams.cc", 857 "src/ostreams.cc",
858 "src/ostreams.h", 858 "src/ostreams.h",
859 "src/parser.cc", 859 "src/parser.cc",
860 "src/parser.h", 860 "src/parser.h",
861 "src/perf-jit.cc", 861 "src/perf-jit.cc",
862 "src/perf-jit.h", 862 "src/perf-jit.h",
863 "src/pending-compilation-error-handler.cc",
864 "src/pending-compilation-error-handler.h",
863 "src/preparse-data-format.h", 865 "src/preparse-data-format.h",
864 "src/preparse-data.cc", 866 "src/preparse-data.cc",
865 "src/preparse-data.h", 867 "src/preparse-data.h",
866 "src/preparser.cc", 868 "src/preparser.cc",
867 "src/preparser.h", 869 "src/preparser.h",
868 "src/prettyprinter.cc", 870 "src/prettyprinter.cc",
869 "src/prettyprinter.h", 871 "src/prettyprinter.h",
870 "src/profile-generator-inl.h", 872 "src/profile-generator-inl.h",
871 "src/profile-generator.cc", 873 "src/profile-generator.cc",
872 "src/profile-generator.h", 874 "src/profile-generator.h",
(...skipping 681 matching lines...) Expand 10 before | Expand all | Expand 10 after
1554 sources += [ 1556 sources += [
1555 "src/d8-debug.cc", 1557 "src/d8-debug.cc",
1556 "$target_gen_dir/d8-js.cc", 1558 "$target_gen_dir/d8-js.cc",
1557 ] 1559 ]
1558 } 1560 }
1559 if (v8_enable_i18n_support) { 1561 if (v8_enable_i18n_support) {
1560 deps += [ "//third_party/icu" ] 1562 deps += [ "//third_party/icu" ]
1561 } 1563 }
1562 } 1564 }
1563 } 1565 }
OLDNEW
« no previous file with comments | « no previous file | src/ast.h » ('j') | src/ast.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698