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

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') | 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 1394 matching lines...) Expand 10 before | Expand all | Expand 10 after
1405 "src/utils.h", 1405 "src/utils.h",
1406 "src/v8.cc", 1406 "src/v8.cc",
1407 "src/v8.h", 1407 "src/v8.h",
1408 "src/v8memory.h", 1408 "src/v8memory.h",
1409 "src/v8threads.cc", 1409 "src/v8threads.cc",
1410 "src/v8threads.h", 1410 "src/v8threads.h",
1411 "src/version.cc", 1411 "src/version.cc",
1412 "src/version.h", 1412 "src/version.h",
1413 "src/vm-state-inl.h", 1413 "src/vm-state-inl.h",
1414 "src/vm-state.h", 1414 "src/vm-state.h",
1415 "src/wasm/switch-logic.h",
1416 "src/wasm/switch-logic.cc",
1415 "src/wasm/asm-wasm-builder.cc", 1417 "src/wasm/asm-wasm-builder.cc",
1416 "src/wasm/asm-wasm-builder.h", 1418 "src/wasm/asm-wasm-builder.h",
1417 "src/wasm/ast-decoder.cc", 1419 "src/wasm/ast-decoder.cc",
1418 "src/wasm/ast-decoder.h", 1420 "src/wasm/ast-decoder.h",
1419 "src/wasm/decoder.h", 1421 "src/wasm/decoder.h",
1420 "src/wasm/encoder.cc", 1422 "src/wasm/encoder.cc",
1421 "src/wasm/encoder.h", 1423 "src/wasm/encoder.h",
1422 "src/wasm/module-decoder.cc", 1424 "src/wasm/module-decoder.cc",
1423 "src/wasm/module-decoder.h", 1425 "src/wasm/module-decoder.h",
1424 "src/wasm/wasm-external-refs.cc", 1426 "src/wasm/wasm-external-refs.cc",
(...skipping 732 matching lines...) Expand 10 before | Expand all | Expand 10 after
2157 2159
2158 configs -= [ "//build/config/compiler:chromium_code" ] 2160 configs -= [ "//build/config/compiler:chromium_code" ]
2159 configs += [ "//build/config/compiler:no_chromium_code" ] 2161 configs += [ "//build/config/compiler:no_chromium_code" ]
2160 configs += [ 2162 configs += [
2161 ":internal_config", 2163 ":internal_config",
2162 ":libplatform_config", 2164 ":libplatform_config",
2163 ":features", 2165 ":features",
2164 ":toolchain", 2166 ":toolchain",
2165 ] 2167 ]
2166 } 2168 }
OLDNEW
« no previous file with comments | « no previous file | src/wasm/asm-wasm-builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698