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

Side by Side Diff: BUILD.gn

Issue 1128233008: [es6] Iterators and generators should "extend" %IteratorPrototype% (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add missing files Created 5 years, 7 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 | « no previous file | src/array-iterator.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 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 8
9 # Because standalone V8 builds are not supported, assume this is part of a 9 # Because standalone V8 builds are not supported, assume this is part of a
10 # Chromium build. 10 # Chromium build.
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 visibility = [ ":*" ] # Only targets in this file can depend on this. 195 visibility = [ ":*" ] # Only targets in this file can depend on this.
196 196
197 script = "tools/js2c.py" 197 script = "tools/js2c.py"
198 198
199 # The script depends on this other script, this rule causes a rebuild if it 199 # The script depends on this other script, this rule causes a rebuild if it
200 # changes. 200 # changes.
201 inputs = [ "tools/jsmin.py" ] 201 inputs = [ "tools/jsmin.py" ]
202 202
203 sources = [ 203 sources = [
204 "src/macros.py", 204 "src/macros.py",
205 "src/messages.h", 205 "src/messages.h",
206 "src/runtime.js", 206 "src/runtime.js",
207 "src/v8natives.js", 207 "src/v8natives.js",
208 "src/symbol.js", 208 "src/symbol.js",
209 "src/array.js", 209 "src/array.js",
210 "src/string.js", 210 "src/string.js",
211 "src/uri.js", 211 "src/uri.js",
212 "src/math.js", 212 "src/math.js",
213 "src/third_party/fdlibm/fdlibm.js", 213 "src/third_party/fdlibm/fdlibm.js",
214 "src/date.js", 214 "src/date.js",
215 "src/regexp.js", 215 "src/regexp.js",
216 "src/arraybuffer.js", 216 "src/arraybuffer.js",
217 "src/typedarray.js", 217 "src/typedarray.js",
218 "src/iterator-prototype.js",
218 "src/generator.js", 219 "src/generator.js",
219 "src/object-observe.js", 220 "src/object-observe.js",
220 "src/collection.js", 221 "src/collection.js",
221 "src/weak-collection.js", 222 "src/weak-collection.js",
222 "src/collection-iterator.js", 223 "src/collection-iterator.js",
223 "src/promise.js", 224 "src/promise.js",
224 "src/messages.js", 225 "src/messages.js",
225 "src/json.js", 226 "src/json.js",
226 "src/array-iterator.js", 227 "src/array-iterator.js",
227 "src/string-iterator.js", 228 "src/string-iterator.js",
(...skipping 29 matching lines...) Expand all
257 visibility = [ ":*" ] # Only targets in this file can depend on this. 258 visibility = [ ":*" ] # Only targets in this file can depend on this.
258 259
259 script = "tools/js2c.py" 260 script = "tools/js2c.py"
260 261
261 # The script depends on this other script, this rule causes a rebuild if it 262 # The script depends on this other script, this rule causes a rebuild if it
262 # changes. 263 # changes.
263 inputs = [ "tools/jsmin.py" ] 264 inputs = [ "tools/jsmin.py" ]
264 265
265 sources = [ 266 sources = [
266 "src/macros.py", 267 "src/macros.py",
267 "src/messages.h", 268 "src/messages.h",
268 "src/proxy.js", 269 "src/proxy.js",
269 "src/generator.js", 270 "src/generator.js",
270 "src/harmony-array.js", 271 "src/harmony-array.js",
271 "src/harmony-array-includes.js", 272 "src/harmony-array-includes.js",
272 "src/harmony-typedarray.js", 273 "src/harmony-typedarray.js",
273 "src/harmony-tostring.js", 274 "src/harmony-tostring.js",
274 "src/harmony-regexp.js", 275 "src/harmony-regexp.js",
275 "src/harmony-reflect.js", 276 "src/harmony-reflect.js",
276 "src/harmony-spread.js", 277 "src/harmony-spread.js",
277 "src/harmony-object.js" 278 "src/harmony-object.js"
(...skipping 1385 matching lines...) Expand 10 before | Expand all | Expand 10 after
1663 sources += [ 1664 sources += [
1664 "src/d8-debug.cc", 1665 "src/d8-debug.cc",
1665 "$target_gen_dir/d8-js.cc", 1666 "$target_gen_dir/d8-js.cc",
1666 ] 1667 ]
1667 } 1668 }
1668 if (v8_enable_i18n_support) { 1669 if (v8_enable_i18n_support) {
1669 deps += [ "//third_party/icu" ] 1670 deps += [ "//third_party/icu" ]
1670 } 1671 }
1671 } 1672 }
1672 } 1673 }
OLDNEW
« no previous file with comments | « no previous file | src/array-iterator.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698