| 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 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 511 "src/compiler/ast-graph-builder.h", | 511 "src/compiler/ast-graph-builder.h", |
| 512 "src/compiler/ast-loop-assignment-analyzer.cc", | 512 "src/compiler/ast-loop-assignment-analyzer.cc", |
| 513 "src/compiler/ast-loop-assignment-analyzer.h", | 513 "src/compiler/ast-loop-assignment-analyzer.h", |
| 514 "src/compiler/basic-block-instrumentor.cc", | 514 "src/compiler/basic-block-instrumentor.cc", |
| 515 "src/compiler/basic-block-instrumentor.h", | 515 "src/compiler/basic-block-instrumentor.h", |
| 516 "src/compiler/change-lowering.cc", | 516 "src/compiler/change-lowering.cc", |
| 517 "src/compiler/change-lowering.h", | 517 "src/compiler/change-lowering.h", |
| 518 "src/compiler/code-generator-impl.h", | 518 "src/compiler/code-generator-impl.h", |
| 519 "src/compiler/code-generator.cc", | 519 "src/compiler/code-generator.cc", |
| 520 "src/compiler/code-generator.h", | 520 "src/compiler/code-generator.h", |
| 521 "src/compiler/code-stubs-turbofan.cc", |
| 521 "src/compiler/common-node-cache.cc", | 522 "src/compiler/common-node-cache.cc", |
| 522 "src/compiler/common-node-cache.h", | 523 "src/compiler/common-node-cache.h", |
| 523 "src/compiler/common-operator-reducer.cc", | 524 "src/compiler/common-operator-reducer.cc", |
| 524 "src/compiler/common-operator-reducer.h", | 525 "src/compiler/common-operator-reducer.h", |
| 525 "src/compiler/common-operator.cc", | 526 "src/compiler/common-operator.cc", |
| 526 "src/compiler/common-operator.h", | 527 "src/compiler/common-operator.h", |
| 527 "src/compiler/control-builders.cc", | 528 "src/compiler/control-builders.cc", |
| 528 "src/compiler/control-builders.h", | 529 "src/compiler/control-builders.h", |
| 529 "src/compiler/control-equivalence.h", | 530 "src/compiler/control-equivalence.h", |
| 530 "src/compiler/control-reducer.cc", | 531 "src/compiler/control-reducer.cc", |
| (...skipping 1021 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1552 sources += [ | 1553 sources += [ |
| 1553 "src/d8-debug.cc", | 1554 "src/d8-debug.cc", |
| 1554 "$target_gen_dir/d8-js.cc", | 1555 "$target_gen_dir/d8-js.cc", |
| 1555 ] | 1556 ] |
| 1556 } | 1557 } |
| 1557 if (v8_enable_i18n_support) { | 1558 if (v8_enable_i18n_support) { |
| 1558 deps += [ "//third_party/icu" ] | 1559 deps += [ "//third_party/icu" ] |
| 1559 } | 1560 } |
| 1560 } | 1561 } |
| 1561 } | 1562 } |
| OLD | NEW |