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

Side by Side Diff: BUILD.gn

Issue 455823002: Fix BUILD.gn after unflagging unscopables (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | 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_compress_startup_data = "off" 7 v8_compress_startup_data = "off"
8 v8_deprecation_warnings = false 8 v8_deprecation_warnings = false
9 v8_enable_disassembler = false 9 v8_enable_disassembler = false
10 v8_enable_gdbjit = false 10 v8_enable_gdbjit = false
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 # The script depends on this other script, this rule causes a rebuild if it 235 # The script depends on this other script, this rule causes a rebuild if it
236 # changes. 236 # changes.
237 source_prereqs = [ "tools/jsmin.py" ] 237 source_prereqs = [ "tools/jsmin.py" ]
238 238
239 sources = [ 239 sources = [
240 "src/macros.py", 240 "src/macros.py",
241 "src/proxy.js", 241 "src/proxy.js",
242 "src/generator.js", 242 "src/generator.js",
243 "src/harmony-string.js", 243 "src/harmony-string.js",
244 "src/harmony-array.js", 244 "src/harmony-array.js",
245 "src/unscopables.js",
246 ] 245 ]
247 246
248 outputs = [ 247 outputs = [
249 "$target_gen_dir/experimental-libraries.cc" 248 "$target_gen_dir/experimental-libraries.cc"
250 ] 249 ]
251 250
252 args = [ 251 args = [
253 rebase_path("$target_gen_dir/experimental-libraries.cc", root_build_dir), 252 rebase_path("$target_gen_dir/experimental-libraries.cc", root_build_dir),
254 "EXPERIMENTAL", 253 "EXPERIMENTAL",
255 v8_compress_startup_data 254 v8_compress_startup_data
(...skipping 1017 matching lines...) Expand 10 before | Expand all | Expand 10 after
1273 deps = [ 1272 deps = [
1274 ":v8_base", 1273 ":v8_base",
1275 ":v8_nosnapshot", 1274 ":v8_nosnapshot",
1276 ] 1275 ]
1277 } 1276 }
1278 1277
1279 direct_dependent_configs = [ ":external_config" ] 1278 direct_dependent_configs = [ ":external_config" ]
1280 } 1279 }
1281 1280
1282 } 1281 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698