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

Side by Side Diff: BUILD.gn

Issue 885813002: Minor refactoring for Zone class and friends. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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') | 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 # 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 968 matching lines...) Expand 10 before | Expand all | Expand 10 after
979 "src/v8.h", 979 "src/v8.h",
980 "src/v8memory.h", 980 "src/v8memory.h",
981 "src/v8threads.cc", 981 "src/v8threads.cc",
982 "src/v8threads.h", 982 "src/v8threads.h",
983 "src/variables.cc", 983 "src/variables.cc",
984 "src/variables.h", 984 "src/variables.h",
985 "src/version.cc", 985 "src/version.cc",
986 "src/version.h", 986 "src/version.h",
987 "src/vm-state-inl.h", 987 "src/vm-state-inl.h",
988 "src/vm-state.h", 988 "src/vm-state.h",
989 "src/zone-inl.h",
990 "src/zone.cc", 989 "src/zone.cc",
991 "src/zone.h", 990 "src/zone.h",
992 "src/third_party/fdlibm/fdlibm.cc", 991 "src/third_party/fdlibm/fdlibm.cc",
993 "src/third_party/fdlibm/fdlibm.h", 992 "src/third_party/fdlibm/fdlibm.h",
994 ] 993 ]
995 994
996 if (v8_target_arch == "x86") { 995 if (v8_target_arch == "x86") {
997 sources += [ 996 sources += [
998 "src/ia32/assembler-ia32-inl.h", 997 "src/ia32/assembler-ia32-inl.h",
999 "src/ia32/assembler-ia32.cc", 998 "src/ia32/assembler-ia32.cc",
(...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after
1557 sources += [ 1556 sources += [
1558 "src/d8-debug.cc", 1557 "src/d8-debug.cc",
1559 "$target_gen_dir/d8-js.cc", 1558 "$target_gen_dir/d8-js.cc",
1560 ] 1559 ]
1561 } 1560 }
1562 if (v8_enable_i18n_support) { 1561 if (v8_enable_i18n_support) {
1563 deps += [ "//third_party/icu" ] 1562 deps += [ "//third_party/icu" ]
1564 } 1563 }
1565 } 1564 }
1566 } 1565 }
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