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 643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
654 "src/ast-expression-visitor.cc", | 654 "src/ast-expression-visitor.cc", |
655 "src/ast-expression-visitor.h", | 655 "src/ast-expression-visitor.h", |
656 "src/ast-literal-reindexer.cc", | 656 "src/ast-literal-reindexer.cc", |
657 "src/ast-literal-reindexer.h", | 657 "src/ast-literal-reindexer.h", |
658 "src/ast-numbering.cc", | 658 "src/ast-numbering.cc", |
659 "src/ast-numbering.h", | 659 "src/ast-numbering.h", |
660 "src/ast-value-factory.cc", | 660 "src/ast-value-factory.cc", |
661 "src/ast-value-factory.h", | 661 "src/ast-value-factory.h", |
662 "src/ast.cc", | 662 "src/ast.cc", |
663 "src/ast.h", | 663 "src/ast.h", |
| 664 "src/atomic-utils.h", |
664 "src/background-parsing-task.cc", | 665 "src/background-parsing-task.cc", |
665 "src/background-parsing-task.h", | 666 "src/background-parsing-task.h", |
666 "src/bailout-reason.cc", | 667 "src/bailout-reason.cc", |
667 "src/bailout-reason.h", | 668 "src/bailout-reason.h", |
668 "src/basic-block-profiler.cc", | 669 "src/basic-block-profiler.cc", |
669 "src/basic-block-profiler.h", | 670 "src/basic-block-profiler.h", |
670 "src/bignum-dtoa.cc", | 671 "src/bignum-dtoa.cc", |
671 "src/bignum-dtoa.h", | 672 "src/bignum-dtoa.h", |
672 "src/bignum.cc", | 673 "src/bignum.cc", |
673 "src/bignum.h", | 674 "src/bignum.h", |
(...skipping 1164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1838 if (!is_component_build) { | 1839 if (!is_component_build) { |
1839 sources += [ | 1840 sources += [ |
1840 "$target_gen_dir/d8-js.cc", | 1841 "$target_gen_dir/d8-js.cc", |
1841 ] | 1842 ] |
1842 } | 1843 } |
1843 if (v8_enable_i18n_support) { | 1844 if (v8_enable_i18n_support) { |
1844 deps += [ "//third_party/icu" ] | 1845 deps += [ "//third_party/icu" ] |
1845 } | 1846 } |
1846 } | 1847 } |
1847 } | 1848 } |
OLD | NEW |