| 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 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 582 "src/compiler/machine-operator.h", | 582 "src/compiler/machine-operator.h", |
| 583 "src/compiler/machine-type.cc", | 583 "src/compiler/machine-type.cc", |
| 584 "src/compiler/machine-type.h", | 584 "src/compiler/machine-type.h", |
| 585 "src/compiler/move-optimizer.cc", | 585 "src/compiler/move-optimizer.cc", |
| 586 "src/compiler/move-optimizer.h", | 586 "src/compiler/move-optimizer.h", |
| 587 "src/compiler/node-aux-data.h", | 587 "src/compiler/node-aux-data.h", |
| 588 "src/compiler/node-cache.cc", | 588 "src/compiler/node-cache.cc", |
| 589 "src/compiler/node-cache.h", | 589 "src/compiler/node-cache.h", |
| 590 "src/compiler/node-marker.cc", | 590 "src/compiler/node-marker.cc", |
| 591 "src/compiler/node-marker.h", | 591 "src/compiler/node-marker.h", |
| 592 "src/compiler/node-matchers.cc", |
| 592 "src/compiler/node-matchers.h", | 593 "src/compiler/node-matchers.h", |
| 593 "src/compiler/node-properties.cc", | 594 "src/compiler/node-properties.cc", |
| 594 "src/compiler/node-properties.h", | 595 "src/compiler/node-properties.h", |
| 595 "src/compiler/node.cc", | 596 "src/compiler/node.cc", |
| 596 "src/compiler/node.h", | 597 "src/compiler/node.h", |
| 597 "src/compiler/opcodes.cc", | 598 "src/compiler/opcodes.cc", |
| 598 "src/compiler/opcodes.h", | 599 "src/compiler/opcodes.h", |
| 599 "src/compiler/operator-properties.cc", | 600 "src/compiler/operator-properties.cc", |
| 600 "src/compiler/operator-properties.h", | 601 "src/compiler/operator-properties.h", |
| 601 "src/compiler/operator.cc", | 602 "src/compiler/operator.cc", |
| (...skipping 952 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1554 sources += [ | 1555 sources += [ |
| 1555 "src/d8-debug.cc", | 1556 "src/d8-debug.cc", |
| 1556 "$target_gen_dir/d8-js.cc", | 1557 "$target_gen_dir/d8-js.cc", |
| 1557 ] | 1558 ] |
| 1558 } | 1559 } |
| 1559 if (v8_enable_i18n_support) { | 1560 if (v8_enable_i18n_support) { |
| 1560 deps += [ "//third_party/icu" ] | 1561 deps += [ "//third_party/icu" ] |
| 1561 } | 1562 } |
| 1562 } | 1563 } |
| 1563 } | 1564 } |
| OLD | NEW |