OLD | NEW |
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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 script = "tools/js2c.py" | 252 script = "tools/js2c.py" |
253 | 253 |
254 # The script depends on this other script, this rule causes a rebuild if it | 254 # The script depends on this other script, this rule causes a rebuild if it |
255 # changes. | 255 # changes. |
256 inputs = [ "tools/jsmin.py" ] | 256 inputs = [ "tools/jsmin.py" ] |
257 | 257 |
258 sources = [ | 258 sources = [ |
259 "src/macros.py", | 259 "src/macros.py", |
260 "src/proxy.js", | 260 "src/proxy.js", |
261 "src/generator.js", | 261 "src/generator.js", |
262 "src/harmony-string.js", | |
263 "src/harmony-array.js", | 262 "src/harmony-array.js", |
264 "src/harmony-array-includes.js", | 263 "src/harmony-array-includes.js", |
265 "src/harmony-typedarray.js", | 264 "src/harmony-typedarray.js", |
266 "src/harmony-tostring.js", | 265 "src/harmony-tostring.js", |
267 "src/harmony-templates.js", | 266 "src/harmony-templates.js", |
268 "src/harmony-regexp.js", | 267 "src/harmony-regexp.js", |
269 "src/harmony-reflect.js" | 268 "src/harmony-reflect.js" |
270 ] | 269 ] |
271 | 270 |
272 outputs = [ | 271 outputs = [ |
(...skipping 1318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1591 sources += [ | 1590 sources += [ |
1592 "src/d8-debug.cc", | 1591 "src/d8-debug.cc", |
1593 "$target_gen_dir/d8-js.cc", | 1592 "$target_gen_dir/d8-js.cc", |
1594 ] | 1593 ] |
1595 } | 1594 } |
1596 if (v8_enable_i18n_support) { | 1595 if (v8_enable_i18n_support) { |
1597 deps += [ "//third_party/icu" ] | 1596 deps += [ "//third_party/icu" ] |
1598 } | 1597 } |
1599 } | 1598 } |
1600 } | 1599 } |
OLD | NEW |