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

Side by Side Diff: src/d8.gyp

Issue 1553083003: 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: fix Created 4 years, 11 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 | « src/bootstrapper.cc ('k') | test/cctest/cctest.gyp » ('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 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 'dependencies': [ 94 'dependencies': [
95 '<(icu_gyp_path):icui18n', 95 '<(icu_gyp_path):icui18n',
96 '<(icu_gyp_path):icuuc', 96 '<(icu_gyp_path):icuuc',
97 ], 97 ],
98 }], 98 }],
99 ['OS=="win" and v8_enable_i18n_support==1', { 99 ['OS=="win" and v8_enable_i18n_support==1', {
100 'dependencies': [ 100 'dependencies': [
101 '<(icu_gyp_path):icudata', 101 '<(icu_gyp_path):icudata',
102 ], 102 ],
103 }], 103 }],
104 ['v8_wasm!=0', {
105 'include_dirs': ['../third_party/wasm'],
106 }],
107 ], 104 ],
108 }, 105 },
109 { 106 {
110 'target_name': 'd8_js2c', 107 'target_name': 'd8_js2c',
111 'type': 'none', 108 'type': 'none',
112 'variables': { 109 'variables': {
113 'js_files': [ 110 'js_files': [
114 'd8.js', 111 'd8.js',
115 'js/macros.py', 112 'js/macros.py',
116 ], 113 ],
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 '../build/isolate.gypi', 153 '../build/isolate.gypi',
157 ], 154 ],
158 'sources': [ 155 'sources': [
159 'd8.isolate', 156 'd8.isolate',
160 ], 157 ],
161 }, 158 },
162 ], 159 ],
163 }], 160 }],
164 ], 161 ],
165 } 162 }
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | test/cctest/cctest.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698