| 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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 # changes. | 266 # changes. |
| 267 inputs = [ "tools/jsmin.py" ] | 267 inputs = [ "tools/jsmin.py" ] |
| 268 | 268 |
| 269 sources = [ | 269 sources = [ |
| 270 "src/macros.py", | 270 "src/macros.py", |
| 271 "src/messages.h", | 271 "src/messages.h", |
| 272 "src/proxy.js", | 272 "src/proxy.js", |
| 273 "src/generator.js", | 273 "src/generator.js", |
| 274 "src/harmony-atomics.js", | 274 "src/harmony-atomics.js", |
| 275 "src/harmony-array-includes.js", | 275 "src/harmony-array-includes.js", |
| 276 "src/harmony-concat-spreadable.js", |
| 276 "src/harmony-tostring.js", | 277 "src/harmony-tostring.js", |
| 277 "src/harmony-regexp.js", | 278 "src/harmony-regexp.js", |
| 278 "src/harmony-reflect.js", | 279 "src/harmony-reflect.js", |
| 279 "src/harmony-spread.js", | 280 "src/harmony-spread.js", |
| 280 "src/harmony-object.js", | 281 "src/harmony-object.js", |
| 281 "src/harmony-sharedarraybuffer.js" | 282 "src/harmony-sharedarraybuffer.js" |
| 282 ] | 283 ] |
| 283 | 284 |
| 284 outputs = [ | 285 outputs = [ |
| 285 "$target_gen_dir/experimental-libraries.cc", | 286 "$target_gen_dir/experimental-libraries.cc", |
| (...skipping 1426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1712 "src/d8-debug.cc", | 1713 "src/d8-debug.cc", |
| 1713 "src/d8-debug.h", | 1714 "src/d8-debug.h", |
| 1714 "$target_gen_dir/d8-js.cc", | 1715 "$target_gen_dir/d8-js.cc", |
| 1715 ] | 1716 ] |
| 1716 } | 1717 } |
| 1717 if (v8_enable_i18n_support) { | 1718 if (v8_enable_i18n_support) { |
| 1718 deps += [ "//third_party/icu" ] | 1719 deps += [ "//third_party/icu" ] |
| 1719 } | 1720 } |
| 1720 } | 1721 } |
| 1721 } | 1722 } |
| OLD | NEW |