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 622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
633 "src/accessors.cc", | 633 "src/accessors.cc", |
634 "src/accessors.h", | 634 "src/accessors.h", |
635 "src/address-map.cc", | 635 "src/address-map.cc", |
636 "src/address-map.h", | 636 "src/address-map.h", |
637 "src/allocation.cc", | 637 "src/allocation.cc", |
638 "src/allocation.h", | 638 "src/allocation.h", |
639 "src/allocation-site-scopes.cc", | 639 "src/allocation-site-scopes.cc", |
640 "src/allocation-site-scopes.h", | 640 "src/allocation-site-scopes.h", |
641 "src/api.cc", | 641 "src/api.cc", |
642 "src/api.h", | 642 "src/api.h", |
| 643 "src/api-arguments.cc", |
| 644 "src/api-arguments.h", |
643 "src/api-experimental.cc", | 645 "src/api-experimental.cc", |
644 "src/api-experimental.h", | 646 "src/api-experimental.h", |
645 "src/api-natives.cc", | 647 "src/api-natives.cc", |
646 "src/api-natives.h", | 648 "src/api-natives.h", |
647 "src/arguments.cc", | 649 "src/arguments.cc", |
648 "src/arguments.h", | 650 "src/arguments.h", |
649 "src/assembler.cc", | 651 "src/assembler.cc", |
650 "src/assembler.h", | 652 "src/assembler.h", |
651 "src/assert-scope.h", | 653 "src/assert-scope.h", |
652 "src/assert-scope.cc", | 654 "src/assert-scope.cc", |
(...skipping 1438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2091 | 2093 |
2092 configs -= [ "//build/config/compiler:chromium_code" ] | 2094 configs -= [ "//build/config/compiler:chromium_code" ] |
2093 configs += [ "//build/config/compiler:no_chromium_code" ] | 2095 configs += [ "//build/config/compiler:no_chromium_code" ] |
2094 configs += [ | 2096 configs += [ |
2095 ":internal_config", | 2097 ":internal_config", |
2096 ":libplatform_config", | 2098 ":libplatform_config", |
2097 ":features", | 2099 ":features", |
2098 ":toolchain", | 2100 ":toolchain", |
2099 ] | 2101 ] |
2100 } | 2102 } |
OLD | NEW |