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

Side by Side Diff: BUILD.gn

Issue 1909513002: [wasm] Extra LEB utilities to leb-helper.h (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add unittests for signed encodings. 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 1398 matching lines...) Expand 10 before | Expand all | Expand 10 after
1409 "src/utils.h", 1409 "src/utils.h",
1410 "src/v8.cc", 1410 "src/v8.cc",
1411 "src/v8.h", 1411 "src/v8.h",
1412 "src/v8memory.h", 1412 "src/v8memory.h",
1413 "src/v8threads.cc", 1413 "src/v8threads.cc",
1414 "src/v8threads.h", 1414 "src/v8threads.h",
1415 "src/version.cc", 1415 "src/version.cc",
1416 "src/version.h", 1416 "src/version.h",
1417 "src/vm-state-inl.h", 1417 "src/vm-state-inl.h",
1418 "src/vm-state.h", 1418 "src/vm-state.h",
1419 "src/wasm/switch-logic.h",
1420 "src/wasm/switch-logic.cc",
1421 "src/wasm/asm-wasm-builder.cc", 1419 "src/wasm/asm-wasm-builder.cc",
1422 "src/wasm/asm-wasm-builder.h", 1420 "src/wasm/asm-wasm-builder.h",
1423 "src/wasm/ast-decoder.cc", 1421 "src/wasm/ast-decoder.cc",
1424 "src/wasm/ast-decoder.h", 1422 "src/wasm/ast-decoder.h",
1425 "src/wasm/decoder.h", 1423 "src/wasm/decoder.h",
1426 "src/wasm/encoder.cc", 1424 "src/wasm/encoder.cc",
1427 "src/wasm/encoder.h", 1425 "src/wasm/encoder.h",
1426 "src/wasm/leb-helper.h",
1428 "src/wasm/module-decoder.cc", 1427 "src/wasm/module-decoder.cc",
1429 "src/wasm/module-decoder.h", 1428 "src/wasm/module-decoder.h",
1429 "src/wasm/switch-logic.cc",
1430 "src/wasm/switch-logic.h",
1430 "src/wasm/wasm-external-refs.cc", 1431 "src/wasm/wasm-external-refs.cc",
1431 "src/wasm/wasm-external-refs.h", 1432 "src/wasm/wasm-external-refs.h",
1432 "src/wasm/wasm-js.cc", 1433 "src/wasm/wasm-js.cc",
1433 "src/wasm/wasm-js.h", 1434 "src/wasm/wasm-js.h",
1434 "src/wasm/wasm-macro-gen.h", 1435 "src/wasm/wasm-macro-gen.h",
1435 "src/wasm/wasm-module.cc", 1436 "src/wasm/wasm-module.cc",
1436 "src/wasm/wasm-module.h", 1437 "src/wasm/wasm-module.h",
1437 "src/wasm/wasm-opcodes.cc", 1438 "src/wasm/wasm-opcodes.cc",
1438 "src/wasm/wasm-opcodes.h", 1439 "src/wasm/wasm-opcodes.h",
1439 "src/wasm/wasm-result.cc", 1440 "src/wasm/wasm-result.cc",
(...skipping 723 matching lines...) Expand 10 before | Expand all | Expand 10 after
2163 2164
2164 configs -= [ "//build/config/compiler:chromium_code" ] 2165 configs -= [ "//build/config/compiler:chromium_code" ]
2165 configs += [ "//build/config/compiler:no_chromium_code" ] 2166 configs += [ "//build/config/compiler:no_chromium_code" ]
2166 configs += [ 2167 configs += [
2167 ":internal_config", 2168 ":internal_config",
2168 ":libplatform_config", 2169 ":libplatform_config",
2169 ":features", 2170 ":features",
2170 ":toolchain", 2171 ":toolchain",
2171 ] 2172 ]
2172 } 2173 }
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