| 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 765 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 776 "src/compiler/greedy-allocator.cc", | 776 "src/compiler/greedy-allocator.cc", |
| 777 "src/compiler/greedy-allocator.h", | 777 "src/compiler/greedy-allocator.h", |
| 778 "src/compiler/instruction-codes.h", | 778 "src/compiler/instruction-codes.h", |
| 779 "src/compiler/instruction-scheduler.cc", | 779 "src/compiler/instruction-scheduler.cc", |
| 780 "src/compiler/instruction-scheduler.h", | 780 "src/compiler/instruction-scheduler.h", |
| 781 "src/compiler/instruction-selector-impl.h", | 781 "src/compiler/instruction-selector-impl.h", |
| 782 "src/compiler/instruction-selector.cc", | 782 "src/compiler/instruction-selector.cc", |
| 783 "src/compiler/instruction-selector.h", | 783 "src/compiler/instruction-selector.h", |
| 784 "src/compiler/instruction.cc", | 784 "src/compiler/instruction.cc", |
| 785 "src/compiler/instruction.h", | 785 "src/compiler/instruction.h", |
| 786 "src/compiler/int64-lowering.cc", |
| 787 "src/compiler/int64-lowering.h", |
| 786 "src/compiler/interpreter-assembler.cc", | 788 "src/compiler/interpreter-assembler.cc", |
| 787 "src/compiler/interpreter-assembler.h", | 789 "src/compiler/interpreter-assembler.h", |
| 788 "src/compiler/js-builtin-reducer.cc", | 790 "src/compiler/js-builtin-reducer.cc", |
| 789 "src/compiler/js-builtin-reducer.h", | 791 "src/compiler/js-builtin-reducer.h", |
| 790 "src/compiler/js-call-reducer.cc", | 792 "src/compiler/js-call-reducer.cc", |
| 791 "src/compiler/js-call-reducer.h", | 793 "src/compiler/js-call-reducer.h", |
| 792 "src/compiler/js-context-relaxation.cc", | 794 "src/compiler/js-context-relaxation.cc", |
| 793 "src/compiler/js-context-relaxation.h", | 795 "src/compiler/js-context-relaxation.h", |
| 794 "src/compiler/js-context-specialization.cc", | 796 "src/compiler/js-context-specialization.cc", |
| 795 "src/compiler/js-context-specialization.h", | 797 "src/compiler/js-context-specialization.h", |
| (...skipping 1185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1981 ] | 1983 ] |
| 1982 | 1984 |
| 1983 configs -= [ "//build/config/compiler:chromium_code" ] | 1985 configs -= [ "//build/config/compiler:chromium_code" ] |
| 1984 configs += [ "//build/config/compiler:no_chromium_code" ] | 1986 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 1985 configs += [ | 1987 configs += [ |
| 1986 ":internal_config", | 1988 ":internal_config", |
| 1987 ":features", | 1989 ":features", |
| 1988 ":toolchain", | 1990 ":toolchain", |
| 1989 ] | 1991 ] |
| 1990 } | 1992 } |
| OLD | NEW |