| 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 1050 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1061 "src/heap/object-stats.cc", | 1061 "src/heap/object-stats.cc", |
| 1062 "src/heap/object-stats.h", | 1062 "src/heap/object-stats.h", |
| 1063 "src/heap/objects-visiting-inl.h", | 1063 "src/heap/objects-visiting-inl.h", |
| 1064 "src/heap/objects-visiting.cc", | 1064 "src/heap/objects-visiting.cc", |
| 1065 "src/heap/objects-visiting.h", | 1065 "src/heap/objects-visiting.h", |
| 1066 "src/heap/scavenge-job.h", | 1066 "src/heap/scavenge-job.h", |
| 1067 "src/heap/scavenge-job.cc", | 1067 "src/heap/scavenge-job.cc", |
| 1068 "src/heap/scavenger-inl.h", | 1068 "src/heap/scavenger-inl.h", |
| 1069 "src/heap/scavenger.cc", | 1069 "src/heap/scavenger.cc", |
| 1070 "src/heap/scavenger.h", | 1070 "src/heap/scavenger.h", |
| 1071 "src/heap/slot-set.h", |
| 1071 "src/heap/slots-buffer.cc", | 1072 "src/heap/slots-buffer.cc", |
| 1072 "src/heap/slots-buffer.h", | 1073 "src/heap/slots-buffer.h", |
| 1073 "src/heap/spaces-inl.h", | 1074 "src/heap/spaces-inl.h", |
| 1074 "src/heap/spaces.cc", | 1075 "src/heap/spaces.cc", |
| 1075 "src/heap/spaces.h", | 1076 "src/heap/spaces.h", |
| 1076 "src/heap/store-buffer-inl.h", | 1077 "src/heap/store-buffer-inl.h", |
| 1077 "src/heap/store-buffer.cc", | 1078 "src/heap/store-buffer.cc", |
| 1078 "src/heap/store-buffer.h", | 1079 "src/heap/store-buffer.h", |
| 1079 "src/i18n.cc", | 1080 "src/i18n.cc", |
| 1080 "src/i18n.h", | 1081 "src/i18n.h", |
| (...skipping 865 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1946 ] | 1947 ] |
| 1947 | 1948 |
| 1948 configs -= [ "//build/config/compiler:chromium_code" ] | 1949 configs -= [ "//build/config/compiler:chromium_code" ] |
| 1949 configs += [ "//build/config/compiler:no_chromium_code" ] | 1950 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 1950 configs += [ | 1951 configs += [ |
| 1951 ":internal_config", | 1952 ":internal_config", |
| 1952 ":features", | 1953 ":features", |
| 1953 ":toolchain", | 1954 ":toolchain", |
| 1954 ] | 1955 ] |
| 1955 } | 1956 } |
| OLD | NEW |