| 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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 "src/collection-iterator.js", | 224 "src/collection-iterator.js", |
| 225 "src/promise.js", | 225 "src/promise.js", |
| 226 "src/messages.js", | 226 "src/messages.js", |
| 227 "src/json.js", | 227 "src/json.js", |
| 228 "src/array-iterator.js", | 228 "src/array-iterator.js", |
| 229 "src/string-iterator.js", | 229 "src/string-iterator.js", |
| 230 "src/debug-debugger.js", | 230 "src/debug-debugger.js", |
| 231 "src/mirror-debugger.js", | 231 "src/mirror-debugger.js", |
| 232 "src/liveedit-debugger.js", | 232 "src/liveedit-debugger.js", |
| 233 "src/templates.js", | 233 "src/templates.js", |
| 234 "src/harmony-array.js", |
| 235 "src/harmony-typedarray.js", |
| 234 ] | 236 ] |
| 235 | 237 |
| 236 outputs = [ | 238 outputs = [ |
| 237 "$target_gen_dir/libraries.cc", | 239 "$target_gen_dir/libraries.cc", |
| 238 ] | 240 ] |
| 239 | 241 |
| 240 if (v8_enable_i18n_support) { | 242 if (v8_enable_i18n_support) { |
| 241 sources += [ "src/i18n.js" ] | 243 sources += [ "src/i18n.js" ] |
| 242 } | 244 } |
| 243 | 245 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 263 # The script depends on this other script, this rule causes a rebuild if it | 265 # The script depends on this other script, this rule causes a rebuild if it |
| 264 # changes. | 266 # changes. |
| 265 inputs = [ "tools/jsmin.py" ] | 267 inputs = [ "tools/jsmin.py" ] |
| 266 | 268 |
| 267 sources = [ | 269 sources = [ |
| 268 "src/macros.py", | 270 "src/macros.py", |
| 269 "src/messages.h", | 271 "src/messages.h", |
| 270 "src/proxy.js", | 272 "src/proxy.js", |
| 271 "src/generator.js", | 273 "src/generator.js", |
| 272 "src/harmony-atomics.js", | 274 "src/harmony-atomics.js", |
| 273 "src/harmony-array.js", | |
| 274 "src/harmony-array-includes.js", | 275 "src/harmony-array-includes.js", |
| 275 "src/harmony-typedarray.js", | |
| 276 "src/harmony-tostring.js", | 276 "src/harmony-tostring.js", |
| 277 "src/harmony-regexp.js", | 277 "src/harmony-regexp.js", |
| 278 "src/harmony-reflect.js", | 278 "src/harmony-reflect.js", |
| 279 "src/harmony-spread.js", | 279 "src/harmony-spread.js", |
| 280 "src/harmony-object.js", | 280 "src/harmony-object.js", |
| 281 "src/harmony-sharedarraybuffer.js" | 281 "src/harmony-sharedarraybuffer.js" |
| 282 ] | 282 ] |
| 283 | 283 |
| 284 outputs = [ | 284 outputs = [ |
| 285 "$target_gen_dir/experimental-libraries.cc", | 285 "$target_gen_dir/experimental-libraries.cc", |
| (...skipping 1420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1706 "src/d8-debug.cc", | 1706 "src/d8-debug.cc", |
| 1707 "src/d8-debug.h", | 1707 "src/d8-debug.h", |
| 1708 "$target_gen_dir/d8-js.cc", | 1708 "$target_gen_dir/d8-js.cc", |
| 1709 ] | 1709 ] |
| 1710 } | 1710 } |
| 1711 if (v8_enable_i18n_support) { | 1711 if (v8_enable_i18n_support) { |
| 1712 deps += [ "//third_party/icu" ] | 1712 deps += [ "//third_party/icu" ] |
| 1713 } | 1713 } |
| 1714 } | 1714 } |
| 1715 } | 1715 } |
| OLD | NEW |