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

Side by Side Diff: BUILD.gn

Issue 1577853007: [heap] Parallel newspace evacuation, semispace copy, and compaction \o/ (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Disable concurrent sweeping for test expecting # of pages released Created 4 years, 11 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/globals.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 import("//build/config/sanitizers/sanitizers.gni") 8 import("//build/config/sanitizers/sanitizers.gni")
9 9
10 if (is_android) { 10 if (is_android) {
(...skipping 1287 matching lines...) Expand 10 before | Expand all | Expand 10 after
1298 "src/typing-asm.h", 1298 "src/typing-asm.h",
1299 "src/typing-reset.cc", 1299 "src/typing-reset.cc",
1300 "src/typing-reset.h", 1300 "src/typing-reset.h",
1301 "src/unicode-inl.h", 1301 "src/unicode-inl.h",
1302 "src/unicode.cc", 1302 "src/unicode.cc",
1303 "src/unicode.h", 1303 "src/unicode.h",
1304 "src/unicode-cache-inl.h", 1304 "src/unicode-cache-inl.h",
1305 "src/unicode-cache.h", 1305 "src/unicode-cache.h",
1306 "src/unicode-decoder.cc", 1306 "src/unicode-decoder.cc",
1307 "src/unicode-decoder.h", 1307 "src/unicode-decoder.h",
1308 "src/utils-inl.h",
1308 "src/utils.cc", 1309 "src/utils.cc",
1309 "src/utils.h", 1310 "src/utils.h",
1310 "src/v8.cc", 1311 "src/v8.cc",
1311 "src/v8.h", 1312 "src/v8.h",
1312 "src/v8memory.h", 1313 "src/v8memory.h",
1313 "src/v8threads.cc", 1314 "src/v8threads.cc",
1314 "src/v8threads.h", 1315 "src/v8threads.h",
1315 "src/version.cc", 1316 "src/version.cc",
1316 "src/version.h", 1317 "src/version.h",
1317 "src/vm-state-inl.h", 1318 "src/vm-state-inl.h",
(...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after
1903 if (!is_component_build) { 1904 if (!is_component_build) {
1904 sources += [ 1905 sources += [
1905 "$target_gen_dir/d8-js.cc", 1906 "$target_gen_dir/d8-js.cc",
1906 ] 1907 ]
1907 } 1908 }
1908 if (v8_enable_i18n_support) { 1909 if (v8_enable_i18n_support) {
1909 deps += [ "//third_party/icu" ] 1910 deps += [ "//third_party/icu" ]
1910 } 1911 }
1911 } 1912 }
1912 } 1913 }
OLDNEW
« no previous file with comments | « no previous file | src/globals.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698