| 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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 "src/macros.py", | 255 "src/macros.py", |
| 256 "src/proxy.js", | 256 "src/proxy.js", |
| 257 "src/generator.js", | 257 "src/generator.js", |
| 258 "src/harmony-string.js", | 258 "src/harmony-string.js", |
| 259 "src/harmony-array.js", | 259 "src/harmony-array.js", |
| 260 "src/harmony-array-includes.js", | 260 "src/harmony-array-includes.js", |
| 261 "src/harmony-typedarray.js", | 261 "src/harmony-typedarray.js", |
| 262 "src/harmony-tostring.js", | 262 "src/harmony-tostring.js", |
| 263 "src/harmony-templates.js", | 263 "src/harmony-templates.js", |
| 264 "src/harmony-regexp.js", | 264 "src/harmony-regexp.js", |
| 265 "src/harmony-reflect.js" |
| 265 ] | 266 ] |
| 266 | 267 |
| 267 outputs = [ | 268 outputs = [ |
| 268 "$target_gen_dir/experimental-libraries.cc", | 269 "$target_gen_dir/experimental-libraries.cc", |
| 269 ] | 270 ] |
| 270 | 271 |
| 271 args = [ | 272 args = [ |
| 272 rebase_path("$target_gen_dir/experimental-libraries.cc", | 273 rebase_path("$target_gen_dir/experimental-libraries.cc", |
| 273 root_build_dir), | 274 root_build_dir), |
| 274 "EXPERIMENTAL", | 275 "EXPERIMENTAL", |
| (...skipping 1307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1582 sources += [ | 1583 sources += [ |
| 1583 "src/d8-debug.cc", | 1584 "src/d8-debug.cc", |
| 1584 "$target_gen_dir/d8-js.cc", | 1585 "$target_gen_dir/d8-js.cc", |
| 1585 ] | 1586 ] |
| 1586 } | 1587 } |
| 1587 if (v8_enable_i18n_support) { | 1588 if (v8_enable_i18n_support) { |
| 1588 deps += [ "//third_party/icu" ] | 1589 deps += [ "//third_party/icu" ] |
| 1589 } | 1590 } |
| 1590 } | 1591 } |
| 1591 } | 1592 } |
| OLD | NEW |