| 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 import("//build/config/sanitizers/sanitizers.gni") | 8 import("//build/config/sanitizers/sanitizers.gni") |
| 9 | 9 |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 610 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 621 "src/api-experimental.cc", | 621 "src/api-experimental.cc", |
| 622 "src/api-experimental.h", | 622 "src/api-experimental.h", |
| 623 "src/api-natives.cc", | 623 "src/api-natives.cc", |
| 624 "src/api-natives.h", | 624 "src/api-natives.h", |
| 625 "src/arguments.cc", | 625 "src/arguments.cc", |
| 626 "src/arguments.h", | 626 "src/arguments.h", |
| 627 "src/assembler.cc", | 627 "src/assembler.cc", |
| 628 "src/assembler.h", | 628 "src/assembler.h", |
| 629 "src/assert-scope.h", | 629 "src/assert-scope.h", |
| 630 "src/assert-scope.cc", | 630 "src/assert-scope.cc", |
| 631 "src/ast/ast-expression-rewriter.cc", |
| 632 "src/ast/ast-expression-rewriter.h", |
| 631 "src/ast/ast-expression-visitor.cc", | 633 "src/ast/ast-expression-visitor.cc", |
| 632 "src/ast/ast-expression-visitor.h", | 634 "src/ast/ast-expression-visitor.h", |
| 633 "src/ast/ast-literal-reindexer.cc", | 635 "src/ast/ast-literal-reindexer.cc", |
| 634 "src/ast/ast-literal-reindexer.h", | 636 "src/ast/ast-literal-reindexer.h", |
| 635 "src/ast/ast-numbering.cc", | 637 "src/ast/ast-numbering.cc", |
| 636 "src/ast/ast-numbering.h", | 638 "src/ast/ast-numbering.h", |
| 637 "src/ast/ast-value-factory.cc", | 639 "src/ast/ast-value-factory.cc", |
| 638 "src/ast/ast-value-factory.h", | 640 "src/ast/ast-value-factory.h", |
| 639 "src/ast/ast.cc", | 641 "src/ast/ast.cc", |
| 640 "src/ast/ast.h", | 642 "src/ast/ast.h", |
| (...skipping 1239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1880 if (!is_component_build) { | 1882 if (!is_component_build) { |
| 1881 sources += [ | 1883 sources += [ |
| 1882 "$target_gen_dir/d8-js.cc", | 1884 "$target_gen_dir/d8-js.cc", |
| 1883 ] | 1885 ] |
| 1884 } | 1886 } |
| 1885 if (v8_enable_i18n_support) { | 1887 if (v8_enable_i18n_support) { |
| 1886 deps += [ "//third_party/icu" ] | 1888 deps += [ "//third_party/icu" ] |
| 1887 } | 1889 } |
| 1888 } | 1890 } |
| 1889 } | 1891 } |
| OLD | NEW |