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

Side by Side Diff: BUILD.gn

Issue 658423002: Unship ES6 iteration and unscopables on 3.28 (Closed) Base URL: https://v8.googlecode.com/svn/branches/3.28
Patch Set: Created 6 years, 2 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 | src/array.js » ('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_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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 "src/json.js", 193 "src/json.js",
194 "src/regexp.js", 194 "src/regexp.js",
195 "src/arraybuffer.js", 195 "src/arraybuffer.js",
196 "src/typedarray.js", 196 "src/typedarray.js",
197 "src/collection.js", 197 "src/collection.js",
198 "src/collection-iterator.js", 198 "src/collection-iterator.js",
199 "src/weak_collection.js", 199 "src/weak_collection.js",
200 "src/promise.js", 200 "src/promise.js",
201 "src/object-observe.js", 201 "src/object-observe.js",
202 "src/macros.py", 202 "src/macros.py",
203 "src/array-iterator.js",
204 "src/string-iterator.js",
205 ] 203 ]
206 204
207 outputs = [ 205 outputs = [
208 "$target_gen_dir/libraries.cc" 206 "$target_gen_dir/libraries.cc"
209 ] 207 ]
210 208
211 if (v8_enable_i18n_support) { 209 if (v8_enable_i18n_support) {
212 sources += [ "src/i18n.js" ] 210 sources += [ "src/i18n.js" ]
213 } 211 }
214 212
(...skipping 18 matching lines...) Expand all
233 script = "tools/js2c.py" 231 script = "tools/js2c.py"
234 232
235 # The script depends on this other script, this rule causes a rebuild if it 233 # The script depends on this other script, this rule causes a rebuild if it
236 # changes. 234 # changes.
237 source_prereqs = [ "tools/jsmin.py" ] 235 source_prereqs = [ "tools/jsmin.py" ]
238 236
239 sources = [ 237 sources = [
240 "src/macros.py", 238 "src/macros.py",
241 "src/proxy.js", 239 "src/proxy.js",
242 "src/generator.js", 240 "src/generator.js",
241 "src/array-iterator.js",
243 "src/harmony-string.js", 242 "src/harmony-string.js",
244 "src/harmony-array.js", 243 "src/harmony-array.js",
244 "src/unscopables.js",
245 ] 245 ]
246 246
247 outputs = [ 247 outputs = [
248 "$target_gen_dir/experimental-libraries.cc" 248 "$target_gen_dir/experimental-libraries.cc"
249 ] 249 ]
250 250
251 args = [ 251 args = [
252 rebase_path("$target_gen_dir/experimental-libraries.cc", root_build_dir), 252 rebase_path("$target_gen_dir/experimental-libraries.cc", root_build_dir),
253 "EXPERIMENTAL", 253 "EXPERIMENTAL",
254 v8_compress_startup_data 254 v8_compress_startup_data
(...skipping 1017 matching lines...) Expand 10 before | Expand all | Expand 10 after
1272 deps = [ 1272 deps = [
1273 ":v8_base", 1273 ":v8_base",
1274 ":v8_nosnapshot", 1274 ":v8_nosnapshot",
1275 ] 1275 ]
1276 } 1276 }
1277 1277
1278 direct_dependent_configs = [ ":external_config" ] 1278 direct_dependent_configs = [ ":external_config" ]
1279 } 1279 }
1280 1280
1281 } 1281 }
OLDNEW
« no previous file with comments | « no previous file | src/array.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698