| 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 1306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1317 "src/profiler/heap-snapshot-generator.h", | 1317 "src/profiler/heap-snapshot-generator.h", |
| 1318 "src/profiler/profile-generator-inl.h", | 1318 "src/profiler/profile-generator-inl.h", |
| 1319 "src/profiler/profile-generator.cc", | 1319 "src/profiler/profile-generator.cc", |
| 1320 "src/profiler/profile-generator.h", | 1320 "src/profiler/profile-generator.h", |
| 1321 "src/profiler/sampler.cc", | 1321 "src/profiler/sampler.cc", |
| 1322 "src/profiler/sampler.h", | 1322 "src/profiler/sampler.h", |
| 1323 "src/profiler/sampling-heap-profiler.cc", | 1323 "src/profiler/sampling-heap-profiler.cc", |
| 1324 "src/profiler/sampling-heap-profiler.h", | 1324 "src/profiler/sampling-heap-profiler.h", |
| 1325 "src/profiler/strings-storage.cc", | 1325 "src/profiler/strings-storage.cc", |
| 1326 "src/profiler/strings-storage.h", | 1326 "src/profiler/strings-storage.h", |
| 1327 "src/profiler/tick-sample.cc", |
| 1328 "src/profiler/tick-sample.h", |
| 1327 "src/profiler/unbound-queue-inl.h", | 1329 "src/profiler/unbound-queue-inl.h", |
| 1328 "src/profiler/unbound-queue.h", | 1330 "src/profiler/unbound-queue.h", |
| 1329 "src/property-descriptor.cc", | 1331 "src/property-descriptor.cc", |
| 1330 "src/property-descriptor.h", | 1332 "src/property-descriptor.h", |
| 1331 "src/property-details.h", | 1333 "src/property-details.h", |
| 1332 "src/property.cc", | 1334 "src/property.cc", |
| 1333 "src/property.h", | 1335 "src/property.h", |
| 1334 "src/prototype.h", | 1336 "src/prototype.h", |
| 1335 "src/regexp/bytecodes-irregexp.h", | 1337 "src/regexp/bytecodes-irregexp.h", |
| 1336 "src/regexp/interpreter-irregexp.cc", | 1338 "src/regexp/interpreter-irregexp.cc", |
| (...skipping 877 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2214 | 2216 |
| 2215 configs -= [ "//build/config/compiler:chromium_code" ] | 2217 configs -= [ "//build/config/compiler:chromium_code" ] |
| 2216 configs += [ "//build/config/compiler:no_chromium_code" ] | 2218 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 2217 configs += [ | 2219 configs += [ |
| 2218 ":internal_config", | 2220 ":internal_config", |
| 2219 ":libplatform_config", | 2221 ":libplatform_config", |
| 2220 ":features", | 2222 ":features", |
| 2221 ":toolchain", | 2223 ":toolchain", |
| 2222 ] | 2224 ] |
| 2223 } | 2225 } |
| OLD | NEW |