| 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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 action("js2c") { | 194 action("js2c") { |
| 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", |
| 205 "src/messages.h", |
| 204 "src/runtime.js", | 206 "src/runtime.js", |
| 205 "src/v8natives.js", | 207 "src/v8natives.js", |
| 206 "src/symbol.js", | 208 "src/symbol.js", |
| 207 "src/array.js", | 209 "src/array.js", |
| 208 "src/string.js", | 210 "src/string.js", |
| 209 "src/uri.js", | 211 "src/uri.js", |
| 210 "src/math.js", | 212 "src/math.js", |
| 211 "src/third_party/fdlibm/fdlibm.js", | 213 "src/third_party/fdlibm/fdlibm.js", |
| 212 "src/date.js", | 214 "src/date.js", |
| 213 "src/regexp.js", | 215 "src/regexp.js", |
| 214 "src/arraybuffer.js", | 216 "src/arraybuffer.js", |
| 215 "src/typedarray.js", | 217 "src/typedarray.js", |
| 216 "src/generator.js", | 218 "src/generator.js", |
| 217 "src/object-observe.js", | 219 "src/object-observe.js", |
| 218 "src/collection.js", | 220 "src/collection.js", |
| 219 "src/weak-collection.js", | 221 "src/weak-collection.js", |
| 220 "src/collection-iterator.js", | 222 "src/collection-iterator.js", |
| 221 "src/promise.js", | 223 "src/promise.js", |
| 222 "src/messages.js", | 224 "src/messages.js", |
| 223 "src/json.js", | 225 "src/json.js", |
| 224 "src/array-iterator.js", | 226 "src/array-iterator.js", |
| 225 "src/string-iterator.js", | 227 "src/string-iterator.js", |
| 226 "src/debug-debugger.js", | 228 "src/debug-debugger.js", |
| 227 "src/mirror-debugger.js", | 229 "src/mirror-debugger.js", |
| 228 "src/liveedit-debugger.js", | 230 "src/liveedit-debugger.js", |
| 229 "src/templates.js", | 231 "src/templates.js", |
| 230 "src/macros.py", | |
| 231 ] | 232 ] |
| 232 | 233 |
| 233 outputs = [ | 234 outputs = [ |
| 234 "$target_gen_dir/libraries.cc", | 235 "$target_gen_dir/libraries.cc", |
| 235 ] | 236 ] |
| 236 | 237 |
| 237 if (v8_enable_i18n_support) { | 238 if (v8_enable_i18n_support) { |
| 238 sources += [ "src/i18n.js" ] | 239 sources += [ "src/i18n.js" ] |
| 239 } | 240 } |
| 240 | 241 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 256 visibility = [ ":*" ] # Only targets in this file can depend on this. | 257 visibility = [ ":*" ] # Only targets in this file can depend on this. |
| 257 | 258 |
| 258 script = "tools/js2c.py" | 259 script = "tools/js2c.py" |
| 259 | 260 |
| 260 # The script depends on this other script, this rule causes a rebuild if it | 261 # The script depends on this other script, this rule causes a rebuild if it |
| 261 # changes. | 262 # changes. |
| 262 inputs = [ "tools/jsmin.py" ] | 263 inputs = [ "tools/jsmin.py" ] |
| 263 | 264 |
| 264 sources = [ | 265 sources = [ |
| 265 "src/macros.py", | 266 "src/macros.py", |
| 267 "src/messages.h", |
| 266 "src/proxy.js", | 268 "src/proxy.js", |
| 267 "src/generator.js", | 269 "src/generator.js", |
| 268 "src/harmony-array.js", | 270 "src/harmony-array.js", |
| 269 "src/harmony-array-includes.js", | 271 "src/harmony-array-includes.js", |
| 270 "src/harmony-typedarray.js", | 272 "src/harmony-typedarray.js", |
| 271 "src/harmony-tostring.js", | 273 "src/harmony-tostring.js", |
| 272 "src/harmony-regexp.js", | 274 "src/harmony-regexp.js", |
| 273 "src/harmony-reflect.js", | 275 "src/harmony-reflect.js", |
| 274 "src/harmony-spread.js" | 276 "src/harmony-spread.js" |
| 275 ] | 277 ] |
| (...skipping 1324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1600 sources += [ | 1602 sources += [ |
| 1601 "src/d8-debug.cc", | 1603 "src/d8-debug.cc", |
| 1602 "$target_gen_dir/d8-js.cc", | 1604 "$target_gen_dir/d8-js.cc", |
| 1603 ] | 1605 ] |
| 1604 } | 1606 } |
| 1605 if (v8_enable_i18n_support) { | 1607 if (v8_enable_i18n_support) { |
| 1606 deps += [ "//third_party/icu" ] | 1608 deps += [ "//third_party/icu" ] |
| 1607 } | 1609 } |
| 1608 } | 1610 } |
| 1609 } | 1611 } |
| OLD | NEW |