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

Side by Side Diff: BUILD.gn

Issue 1263633003: Fix BUILD.gn. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 4 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 | no next file » | 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 649 matching lines...) Expand 10 before | Expand all | Expand 10 after
660 "src/compiler/all-nodes.cc", 660 "src/compiler/all-nodes.cc",
661 "src/compiler/all-nodes.h", 661 "src/compiler/all-nodes.h",
662 "src/compiler/ast-graph-builder.cc", 662 "src/compiler/ast-graph-builder.cc",
663 "src/compiler/ast-graph-builder.h", 663 "src/compiler/ast-graph-builder.h",
664 "src/compiler/ast-loop-assignment-analyzer.cc", 664 "src/compiler/ast-loop-assignment-analyzer.cc",
665 "src/compiler/ast-loop-assignment-analyzer.h", 665 "src/compiler/ast-loop-assignment-analyzer.h",
666 "src/compiler/basic-block-instrumentor.cc", 666 "src/compiler/basic-block-instrumentor.cc",
667 "src/compiler/basic-block-instrumentor.h", 667 "src/compiler/basic-block-instrumentor.h",
668 "src/compiler/change-lowering.cc", 668 "src/compiler/change-lowering.cc",
669 "src/compiler/change-lowering.h", 669 "src/compiler/change-lowering.h",
670 "src/compiler/c-linkage.cc",
670 "src/compiler/coalesced-live-ranges.cc", 671 "src/compiler/coalesced-live-ranges.cc",
671 "src/compiler/coalesced-live-ranges.h", 672 "src/compiler/coalesced-live-ranges.h",
672 "src/compiler/code-generator-impl.h", 673 "src/compiler/code-generator-impl.h",
673 "src/compiler/code-generator.cc", 674 "src/compiler/code-generator.cc",
674 "src/compiler/code-generator.h", 675 "src/compiler/code-generator.h",
675 "src/compiler/common-node-cache.cc", 676 "src/compiler/common-node-cache.cc",
676 "src/compiler/common-node-cache.h", 677 "src/compiler/common-node-cache.h",
677 "src/compiler/common-operator-reducer.cc", 678 "src/compiler/common-operator-reducer.cc",
678 "src/compiler/common-operator-reducer.h", 679 "src/compiler/common-operator-reducer.h",
679 "src/compiler/common-operator.cc", 680 "src/compiler/common-operator.cc",
(...skipping 1088 matching lines...) Expand 10 before | Expand all | Expand 10 after
1768 if (!is_component_build) { 1769 if (!is_component_build) {
1769 sources += [ 1770 sources += [
1770 "$target_gen_dir/d8-js.cc", 1771 "$target_gen_dir/d8-js.cc",
1771 ] 1772 ]
1772 } 1773 }
1773 if (v8_enable_i18n_support) { 1774 if (v8_enable_i18n_support) {
1774 deps += [ "//third_party/icu" ] 1775 deps += [ "//third_party/icu" ]
1775 } 1776 }
1776 } 1777 }
1777 } 1778 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698