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

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/asm-wasm-builder.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 1379 matching lines...) Expand 10 before | Expand all | Expand 10 after
1390 "src/utils.h", 1390 "src/utils.h",
1391 "src/v8.cc", 1391 "src/v8.cc",
1392 "src/v8.h", 1392 "src/v8.h",
1393 "src/v8memory.h", 1393 "src/v8memory.h",
1394 "src/v8threads.cc", 1394 "src/v8threads.cc",
1395 "src/v8threads.h", 1395 "src/v8threads.h",
1396 "src/version.cc", 1396 "src/version.cc",
1397 "src/version.h", 1397 "src/version.h",
1398 "src/vm-state-inl.h", 1398 "src/vm-state-inl.h",
1399 "src/vm-state.h", 1399 "src/vm-state.h",
1400 "src/wasm/switch-logic.h",
1401 "src/wasm/switch-logic.cc",
1400 "src/wasm/asm-wasm-builder.cc", 1402 "src/wasm/asm-wasm-builder.cc",
1401 "src/wasm/asm-wasm-builder.h", 1403 "src/wasm/asm-wasm-builder.h",
1402 "src/wasm/ast-decoder.cc", 1404 "src/wasm/ast-decoder.cc",
1403 "src/wasm/ast-decoder.h", 1405 "src/wasm/ast-decoder.h",
1404 "src/wasm/decoder.h", 1406 "src/wasm/decoder.h",
1405 "src/wasm/encoder.cc", 1407 "src/wasm/encoder.cc",
1406 "src/wasm/encoder.h", 1408 "src/wasm/encoder.h",
1407 "src/wasm/module-decoder.cc", 1409 "src/wasm/module-decoder.cc",
1408 "src/wasm/module-decoder.h", 1410 "src/wasm/module-decoder.h",
1409 "src/wasm/wasm-external-refs.cc", 1411 "src/wasm/wasm-external-refs.cc",
(...skipping 731 matching lines...) Expand 10 before | Expand all | Expand 10 after
2141 2143
2142 configs -= [ "//build/config/compiler:chromium_code" ] 2144 configs -= [ "//build/config/compiler:chromium_code" ]
2143 configs += [ "//build/config/compiler:no_chromium_code" ] 2145 configs += [ "//build/config/compiler:no_chromium_code" ]
2144 configs += [ 2146 configs += [
2145 ":internal_config", 2147 ":internal_config",
2146 ":libplatform_config", 2148 ":libplatform_config",
2147 ":features", 2149 ":features",
2148 ":toolchain", 2150 ":toolchain",
2149 ] 2151 ]
2150 } 2152 }
OLDNEW
« no previous file with comments | « no previous file | src/wasm/asm-wasm-builder.cc » ('j') | src/wasm/asm-wasm-builder.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698