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

Side by Side Diff: BUILD.gn

Issue 763273002: Introduce a kill-switch for shipping features. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix test that was failing under nosnap Created 6 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 | src/bootstrapper.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 # TODO(jochen): These will need to be user-settable to support standalone V8 5 # TODO(jochen): These will need to be user-settable to support standalone V8
6 # builds. 6 # builds.
7 v8_deprecation_warnings = false 7 v8_deprecation_warnings = false
8 v8_enable_disassembler = false 8 v8_enable_disassembler = false
9 v8_enable_gdbjit = false 9 v8_enable_gdbjit = false
10 v8_enable_handle_zapping = true 10 v8_enable_handle_zapping = true
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 "src/weak-collection.js", 189 "src/weak-collection.js",
190 "src/collection-iterator.js", 190 "src/collection-iterator.js",
191 "src/promise.js", 191 "src/promise.js",
192 "src/messages.js", 192 "src/messages.js",
193 "src/json.js", 193 "src/json.js",
194 "src/array-iterator.js", 194 "src/array-iterator.js",
195 "src/string-iterator.js", 195 "src/string-iterator.js",
196 "src/debug-debugger.js", 196 "src/debug-debugger.js",
197 "src/mirror-debugger.js", 197 "src/mirror-debugger.js",
198 "src/liveedit-debugger.js", 198 "src/liveedit-debugger.js",
199 "src/harmony-string.js",
200 "src/macros.py", 199 "src/macros.py",
201 ] 200 ]
202 201
203 outputs = [ 202 outputs = [
204 "$target_gen_dir/libraries.cc" 203 "$target_gen_dir/libraries.cc"
205 ] 204 ]
206 205
207 if (v8_enable_i18n_support) { 206 if (v8_enable_i18n_support) {
208 sources += [ "src/i18n.js" ] 207 sources += [ "src/i18n.js" ]
209 } 208 }
(...skipping 18 matching lines...) Expand all
228 script = "tools/js2c.py" 227 script = "tools/js2c.py"
229 228
230 # The script depends on this other script, this rule causes a rebuild if it 229 # The script depends on this other script, this rule causes a rebuild if it
231 # changes. 230 # changes.
232 source_prereqs = [ "tools/jsmin.py" ] 231 source_prereqs = [ "tools/jsmin.py" ]
233 232
234 sources = [ 233 sources = [
235 "src/macros.py", 234 "src/macros.py",
236 "src/proxy.js", 235 "src/proxy.js",
237 "src/generator.js", 236 "src/generator.js",
237 "src/harmony-string.js",
238 "src/harmony-array.js", 238 "src/harmony-array.js",
239 "src/harmony-typedarray.js", 239 "src/harmony-typedarray.js",
240 "src/harmony-classes.js", 240 "src/harmony-classes.js",
241 "src/harmony-tostring.js", 241 "src/harmony-tostring.js",
242 "src/harmony-templates.js" 242 "src/harmony-templates.js"
243 ] 243 ]
244 244
245 outputs = [ 245 outputs = [
246 "$target_gen_dir/experimental-libraries.cc" 246 "$target_gen_dir/experimental-libraries.cc"
247 ] 247 ]
(...skipping 1196 matching lines...) Expand 10 before | Expand all | Expand 10 after
1444 deps = [ 1444 deps = [
1445 ":v8_base", 1445 ":v8_base",
1446 ":v8_nosnapshot", 1446 ":v8_nosnapshot",
1447 ] 1447 ]
1448 } 1448 }
1449 1449
1450 direct_dependent_configs = [ ":external_config" ] 1450 direct_dependent_configs = [ ":external_config" ]
1451 } 1451 }
1452 1452
1453 } 1453 }
OLDNEW
« no previous file with comments | « no previous file | src/bootstrapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698