| 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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/prologue.js", |
| 207 "src/v8natives.js", | 208 "src/v8natives.js", |
| 208 "src/symbol.js", | 209 "src/symbol.js", |
| 209 "src/array.js", | 210 "src/array.js", |
| 210 "src/string.js", | 211 "src/string.js", |
| 211 "src/uri.js", | 212 "src/uri.js", |
| 212 "src/math.js", | 213 "src/math.js", |
| 213 "src/third_party/fdlibm/fdlibm.js", | 214 "src/third_party/fdlibm/fdlibm.js", |
| 214 "src/date.js", | 215 "src/date.js", |
| 215 "src/regexp.js", | 216 "src/regexp.js", |
| 216 "src/arraybuffer.js", | 217 "src/arraybuffer.js", |
| (...skipping 1458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1675 sources += [ | 1676 sources += [ |
| 1676 "src/d8-debug.cc", | 1677 "src/d8-debug.cc", |
| 1677 "$target_gen_dir/d8-js.cc", | 1678 "$target_gen_dir/d8-js.cc", |
| 1678 ] | 1679 ] |
| 1679 } | 1680 } |
| 1680 if (v8_enable_i18n_support) { | 1681 if (v8_enable_i18n_support) { |
| 1681 deps += [ "//third_party/icu" ] | 1682 deps += [ "//third_party/icu" ] |
| 1682 } | 1683 } |
| 1683 } | 1684 } |
| 1684 } | 1685 } |
| OLD | NEW |