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

Side by Side Diff: BUILD.gn

Issue 1967023004: [wasm] Add UTF-8 validation (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix signed/unsigned mismatch Created 4 years, 7 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/v8.gyp » ('j') | src/wasm/utf8.h » ('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 1461 matching lines...) Expand 10 before | Expand all | Expand 10 after
1472 "src/wasm/ast-decoder.cc", 1472 "src/wasm/ast-decoder.cc",
1473 "src/wasm/ast-decoder.h", 1473 "src/wasm/ast-decoder.h",
1474 "src/wasm/decoder.h", 1474 "src/wasm/decoder.h",
1475 "src/wasm/encoder.cc", 1475 "src/wasm/encoder.cc",
1476 "src/wasm/encoder.h", 1476 "src/wasm/encoder.h",
1477 "src/wasm/leb-helper.h", 1477 "src/wasm/leb-helper.h",
1478 "src/wasm/module-decoder.cc", 1478 "src/wasm/module-decoder.cc",
1479 "src/wasm/module-decoder.h", 1479 "src/wasm/module-decoder.h",
1480 "src/wasm/switch-logic.cc", 1480 "src/wasm/switch-logic.cc",
1481 "src/wasm/switch-logic.h", 1481 "src/wasm/switch-logic.h",
1482 "src/wasm/utf8.cc",
1483 "src/wasm/utf8.h",
1482 "src/wasm/wasm-external-refs.cc", 1484 "src/wasm/wasm-external-refs.cc",
1483 "src/wasm/wasm-external-refs.h", 1485 "src/wasm/wasm-external-refs.h",
1484 "src/wasm/wasm-function-name-table.cc", 1486 "src/wasm/wasm-function-name-table.cc",
1485 "src/wasm/wasm-function-name-table.h", 1487 "src/wasm/wasm-function-name-table.h",
1486 "src/wasm/wasm-js.cc", 1488 "src/wasm/wasm-js.cc",
1487 "src/wasm/wasm-js.h", 1489 "src/wasm/wasm-js.h",
1488 "src/wasm/wasm-macro-gen.h", 1490 "src/wasm/wasm-macro-gen.h",
1489 "src/wasm/wasm-module.cc", 1491 "src/wasm/wasm-module.cc",
1490 "src/wasm/wasm-module.h", 1492 "src/wasm/wasm-module.h",
1491 "src/wasm/wasm-opcodes.cc", 1493 "src/wasm/wasm-opcodes.cc",
(...skipping 758 matching lines...) Expand 10 before | Expand all | Expand 10 after
2250 2252
2251 configs -= [ "//build/config/compiler:chromium_code" ] 2253 configs -= [ "//build/config/compiler:chromium_code" ]
2252 configs += [ "//build/config/compiler:no_chromium_code" ] 2254 configs += [ "//build/config/compiler:no_chromium_code" ]
2253 configs += [ 2255 configs += [
2254 ":internal_config", 2256 ":internal_config",
2255 ":libplatform_config", 2257 ":libplatform_config",
2256 ":features", 2258 ":features",
2257 ":toolchain", 2259 ":toolchain",
2258 ] 2260 ]
2259 } 2261 }
OLDNEW
« no previous file with comments | « no previous file | src/v8.gyp » ('j') | src/wasm/utf8.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698