| 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 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 529 "src/compiler/control-builders.cc", | 529 "src/compiler/control-builders.cc", |
| 530 "src/compiler/control-builders.h", | 530 "src/compiler/control-builders.h", |
| 531 "src/compiler/control-equivalence.h", | 531 "src/compiler/control-equivalence.h", |
| 532 "src/compiler/control-reducer.cc", | 532 "src/compiler/control-reducer.cc", |
| 533 "src/compiler/control-reducer.h", | 533 "src/compiler/control-reducer.h", |
| 534 "src/compiler/diamond.h", | 534 "src/compiler/diamond.h", |
| 535 "src/compiler/frame.h", | 535 "src/compiler/frame.h", |
| 536 "src/compiler/gap-resolver.cc", | 536 "src/compiler/gap-resolver.cc", |
| 537 "src/compiler/gap-resolver.h", | 537 "src/compiler/gap-resolver.h", |
| 538 "src/compiler/generic-algorithm.h", | 538 "src/compiler/generic-algorithm.h", |
| 539 "src/compiler/graph-builder.cc", | |
| 540 "src/compiler/graph-builder.h", | 539 "src/compiler/graph-builder.h", |
| 541 "src/compiler/graph-inl.h", | 540 "src/compiler/graph-inl.h", |
| 542 "src/compiler/graph-reducer.cc", | 541 "src/compiler/graph-reducer.cc", |
| 543 "src/compiler/graph-reducer.h", | 542 "src/compiler/graph-reducer.h", |
| 544 "src/compiler/graph-replay.cc", | 543 "src/compiler/graph-replay.cc", |
| 545 "src/compiler/graph-replay.h", | 544 "src/compiler/graph-replay.h", |
| 546 "src/compiler/graph-visualizer.cc", | 545 "src/compiler/graph-visualizer.cc", |
| 547 "src/compiler/graph-visualizer.h", | 546 "src/compiler/graph-visualizer.h", |
| 548 "src/compiler/graph.cc", | 547 "src/compiler/graph.cc", |
| 549 "src/compiler/graph.h", | 548 "src/compiler/graph.h", |
| (...skipping 1005 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1555 sources += [ | 1554 sources += [ |
| 1556 "src/d8-debug.cc", | 1555 "src/d8-debug.cc", |
| 1557 "$target_gen_dir/d8-js.cc", | 1556 "$target_gen_dir/d8-js.cc", |
| 1558 ] | 1557 ] |
| 1559 } | 1558 } |
| 1560 if (v8_enable_i18n_support) { | 1559 if (v8_enable_i18n_support) { |
| 1561 deps += [ "//third_party/icu" ] | 1560 deps += [ "//third_party/icu" ] |
| 1562 } | 1561 } |
| 1563 } | 1562 } |
| 1564 } | 1563 } |
| OLD | NEW |