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

Side by Side Diff: BUILD.gn

Issue 1516753007: Remove wasm compile time option and enable wasm behind a runtime flag. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: back to the start state Created 5 years 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 | Makefile » ('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 849 matching lines...) Expand 10 before | Expand all | Expand 10 after
860 "src/compiler/type-hint-analyzer.cc", 860 "src/compiler/type-hint-analyzer.cc",
861 "src/compiler/type-hint-analyzer.h", 861 "src/compiler/type-hint-analyzer.h",
862 "src/compiler/type-hints.cc", 862 "src/compiler/type-hints.cc",
863 "src/compiler/type-hints.h", 863 "src/compiler/type-hints.h",
864 "src/compiler/typer.cc", 864 "src/compiler/typer.cc",
865 "src/compiler/typer.h", 865 "src/compiler/typer.h",
866 "src/compiler/value-numbering-reducer.cc", 866 "src/compiler/value-numbering-reducer.cc",
867 "src/compiler/value-numbering-reducer.h", 867 "src/compiler/value-numbering-reducer.h",
868 "src/compiler/verifier.cc", 868 "src/compiler/verifier.cc",
869 "src/compiler/verifier.h", 869 "src/compiler/verifier.h",
870 "src/compiler/wasm-compiler.cc",
871 "src/compiler/wasm-compiler.h",
872 "src/compiler/wasm-linkage.cc",
870 "src/compiler/zone-pool.cc", 873 "src/compiler/zone-pool.cc",
871 "src/compiler/zone-pool.h", 874 "src/compiler/zone-pool.h",
872 "src/compiler.cc", 875 "src/compiler.cc",
873 "src/compiler.h", 876 "src/compiler.h",
874 "src/context-measure.cc", 877 "src/context-measure.cc",
875 "src/context-measure.h", 878 "src/context-measure.h",
876 "src/contexts-inl.h", 879 "src/contexts-inl.h",
877 "src/contexts.cc", 880 "src/contexts.cc",
878 "src/contexts.h", 881 "src/contexts.h",
879 "src/conversions-inl.h", 882 "src/conversions-inl.h",
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after
1275 "src/utils.h", 1278 "src/utils.h",
1276 "src/v8.cc", 1279 "src/v8.cc",
1277 "src/v8.h", 1280 "src/v8.h",
1278 "src/v8memory.h", 1281 "src/v8memory.h",
1279 "src/v8threads.cc", 1282 "src/v8threads.cc",
1280 "src/v8threads.h", 1283 "src/v8threads.h",
1281 "src/version.cc", 1284 "src/version.cc",
1282 "src/version.h", 1285 "src/version.h",
1283 "src/vm-state-inl.h", 1286 "src/vm-state-inl.h",
1284 "src/vm-state.h", 1287 "src/vm-state.h",
1288 "src/wasm/asm-wasm-builder.cc",
1289 "src/wasm/asm-wasm-builder.h",
1290 "src/wasm/ast-decoder.cc",
1291 "src/wasm/ast-decoder.h",
1292 "src/wasm/decoder.h",
1293 "src/wasm/encoder.cc",
1294 "src/wasm/encoder.h",
1295 "src/wasm/module-decoder.cc",
1296 "src/wasm/module-decoder.h",
1297 "src/wasm/wasm-js.cc",
1298 "src/wasm/wasm-js.h",
1299 "src/wasm/wasm-macro-gen.h",
1300 "src/wasm/wasm-module.cc",
1301 "src/wasm/wasm-module.h",
1302 "src/wasm/wasm-opcodes.cc",
1303 "src/wasm/wasm-opcodes.h",
1304 "src/wasm/wasm-result.cc",
1305 "src/wasm/wasm-result.h",
1285 "src/zone.cc", 1306 "src/zone.cc",
1286 "src/zone.h", 1307 "src/zone.h",
1287 "src/zone-allocator.h", 1308 "src/zone-allocator.h",
1288 "src/zone-containers.h", 1309 "src/zone-containers.h",
1289 "src/third_party/fdlibm/fdlibm.cc", 1310 "src/third_party/fdlibm/fdlibm.cc",
1290 "src/third_party/fdlibm/fdlibm.h", 1311 "src/third_party/fdlibm/fdlibm.h",
1291 ] 1312 ]
1292 1313
1293 if (v8_target_arch == "x86") { 1314 if (v8_target_arch == "x86") {
1294 sources += [ 1315 sources += [
(...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after
1851 if (!is_component_build) { 1872 if (!is_component_build) {
1852 sources += [ 1873 sources += [
1853 "$target_gen_dir/d8-js.cc", 1874 "$target_gen_dir/d8-js.cc",
1854 ] 1875 ]
1855 } 1876 }
1856 if (v8_enable_i18n_support) { 1877 if (v8_enable_i18n_support) {
1857 deps += [ "//third_party/icu" ] 1878 deps += [ "//third_party/icu" ]
1858 } 1879 }
1859 } 1880 }
1860 } 1881 }
OLDNEW
« no previous file with comments | « no previous file | Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698