| 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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/prologue.js", |
| 206 "src/runtime.js", | 207 "src/runtime.js", |
| 207 "src/prologue.js", | |
| 208 "src/v8natives.js", | 208 "src/v8natives.js", |
| 209 "src/symbol.js", | 209 "src/symbol.js", |
| 210 "src/array.js", | 210 "src/array.js", |
| 211 "src/string.js", | 211 "src/string.js", |
| 212 "src/uri.js", | 212 "src/uri.js", |
| 213 "src/math.js", | 213 "src/math.js", |
| 214 "src/third_party/fdlibm/fdlibm.js", | 214 "src/third_party/fdlibm/fdlibm.js", |
| 215 "src/date.js", | 215 "src/date.js", |
| 216 "src/regexp.js", | 216 "src/regexp.js", |
| 217 "src/arraybuffer.js", | 217 "src/arraybuffer.js", |
| (...skipping 1555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1773 if (!is_component_build) { | 1773 if (!is_component_build) { |
| 1774 sources += [ | 1774 sources += [ |
| 1775 "$target_gen_dir/d8-js.cc", | 1775 "$target_gen_dir/d8-js.cc", |
| 1776 ] | 1776 ] |
| 1777 } | 1777 } |
| 1778 if (v8_enable_i18n_support) { | 1778 if (v8_enable_i18n_support) { |
| 1779 deps += [ "//third_party/icu" ] | 1779 deps += [ "//third_party/icu" ] |
| 1780 } | 1780 } |
| 1781 } | 1781 } |
| 1782 } | 1782 } |
| OLD | NEW |