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

Side by Side Diff: BUILD.gn

Issue 1838973002: optimized switch implementation (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 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/wasm/asm-wasm-builder.cc » ('j') | src/wasm/switch-logic.cc » ('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 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 1354 matching lines...) Expand 10 before | Expand all | Expand 10 after
1365 "src/utils.h", 1365 "src/utils.h",
1366 "src/v8.cc", 1366 "src/v8.cc",
1367 "src/v8.h", 1367 "src/v8.h",
1368 "src/v8memory.h", 1368 "src/v8memory.h",
1369 "src/v8threads.cc", 1369 "src/v8threads.cc",
1370 "src/v8threads.h", 1370 "src/v8threads.h",
1371 "src/version.cc", 1371 "src/version.cc",
1372 "src/version.h", 1372 "src/version.h",
1373 "src/vm-state-inl.h", 1373 "src/vm-state-inl.h",
1374 "src/vm-state.h", 1374 "src/vm-state.h",
1375 "src/wasm/switch-logic.h",
1376 "src/wasm/switch-logic.cc",
1375 "src/wasm/asm-wasm-builder.cc", 1377 "src/wasm/asm-wasm-builder.cc",
1376 "src/wasm/asm-wasm-builder.h", 1378 "src/wasm/asm-wasm-builder.h",
1377 "src/wasm/ast-decoder.cc", 1379 "src/wasm/ast-decoder.cc",
1378 "src/wasm/ast-decoder.h", 1380 "src/wasm/ast-decoder.h",
1379 "src/wasm/decoder.h", 1381 "src/wasm/decoder.h",
1380 "src/wasm/encoder.cc", 1382 "src/wasm/encoder.cc",
1381 "src/wasm/encoder.h", 1383 "src/wasm/encoder.h",
1382 "src/wasm/module-decoder.cc", 1384 "src/wasm/module-decoder.cc",
1383 "src/wasm/module-decoder.h", 1385 "src/wasm/module-decoder.h",
1384 "src/wasm/wasm-external-refs.h", 1386 "src/wasm/wasm-external-refs.h",
(...skipping 728 matching lines...) Expand 10 before | Expand all | Expand 10 after
2113 2115
2114 configs -= [ "//build/config/compiler:chromium_code" ] 2116 configs -= [ "//build/config/compiler:chromium_code" ]
2115 configs += [ "//build/config/compiler:no_chromium_code" ] 2117 configs += [ "//build/config/compiler:no_chromium_code" ]
2116 configs += [ 2118 configs += [
2117 ":internal_config", 2119 ":internal_config",
2118 ":libplatform_config", 2120 ":libplatform_config",
2119 ":features", 2121 ":features",
2120 ":toolchain", 2122 ":toolchain",
2121 ] 2123 ]
2122 } 2124 }
OLDNEW
« no previous file with comments | « no previous file | src/wasm/asm-wasm-builder.cc » ('j') | src/wasm/switch-logic.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698