| 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 # Because standalone V8 builds are not supported, assume this is part of a | 5 # Because standalone V8 builds are not supported, assume this is part of a |
| 6 # Chromium build. | 6 # Chromium build. |
| 7 import("//build/module_args/v8.gni") | 7 import("//build/module_args/v8.gni") |
| 8 | 8 |
| 9 # TODO(jochen): These will need to be user-settable to support standalone V8 | 9 # TODO(jochen): These will need to be user-settable to support standalone V8 |
| 10 # builds. | 10 # builds. |
| (...skipping 962 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 973 "src/utils-inl.h", | 973 "src/utils-inl.h", |
| 974 "src/utils.cc", | 974 "src/utils.cc", |
| 975 "src/utils.h", | 975 "src/utils.h", |
| 976 "src/v8.cc", | 976 "src/v8.cc", |
| 977 "src/v8.h", | 977 "src/v8.h", |
| 978 "src/v8memory.h", | 978 "src/v8memory.h", |
| 979 "src/v8threads.cc", | 979 "src/v8threads.cc", |
| 980 "src/v8threads.h", | 980 "src/v8threads.h", |
| 981 "src/variables.cc", | 981 "src/variables.cc", |
| 982 "src/variables.h", | 982 "src/variables.h", |
| 983 "src/version.cc", | 983 "src/version_gen.cc", |
| 984 "src/version.h", | 984 "src/version.h", |
| 985 "src/vm-state-inl.h", | 985 "src/vm-state-inl.h", |
| 986 "src/vm-state.h", | 986 "src/vm-state.h", |
| 987 "src/zone-inl.h", | 987 "src/zone-inl.h", |
| 988 "src/zone.cc", | 988 "src/zone.cc", |
| 989 "src/zone.h", | 989 "src/zone.h", |
| 990 "src/third_party/fdlibm/fdlibm.cc", | 990 "src/third_party/fdlibm/fdlibm.cc", |
| 991 "src/third_party/fdlibm/fdlibm.h", | 991 "src/third_party/fdlibm/fdlibm.h", |
| 992 ] | 992 ] |
| 993 | 993 |
| (...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1555 sources += [ | 1555 sources += [ |
| 1556 "src/d8-debug.cc", | 1556 "src/d8-debug.cc", |
| 1557 "$target_gen_dir/d8-js.cc", | 1557 "$target_gen_dir/d8-js.cc", |
| 1558 ] | 1558 ] |
| 1559 } | 1559 } |
| 1560 if (v8_enable_i18n_support) { | 1560 if (v8_enable_i18n_support) { |
| 1561 deps += [ "//third_party/icu" ] | 1561 deps += [ "//third_party/icu" ] |
| 1562 } | 1562 } |
| 1563 } | 1563 } |
| 1564 } | 1564 } |
| OLD | NEW |