| 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 | 8 |
| 9 # Because standalone V8 builds are not supported, assume this is part of a | 9 # Because standalone V8 builds are not supported, assume this is part of a |
| 10 # Chromium build. | 10 # Chromium build. |
| (...skipping 1501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1512 "src/base/platform/condition-variable.h", | 1512 "src/base/platform/condition-variable.h", |
| 1513 "src/base/platform/mutex.cc", | 1513 "src/base/platform/mutex.cc", |
| 1514 "src/base/platform/mutex.h", | 1514 "src/base/platform/mutex.h", |
| 1515 "src/base/platform/platform.h", | 1515 "src/base/platform/platform.h", |
| 1516 "src/base/platform/semaphore.cc", | 1516 "src/base/platform/semaphore.cc", |
| 1517 "src/base/platform/semaphore.h", | 1517 "src/base/platform/semaphore.h", |
| 1518 "src/base/safe_conversions.h", | 1518 "src/base/safe_conversions.h", |
| 1519 "src/base/safe_conversions_impl.h", | 1519 "src/base/safe_conversions_impl.h", |
| 1520 "src/base/safe_math.h", | 1520 "src/base/safe_math.h", |
| 1521 "src/base/safe_math_impl.h", | 1521 "src/base/safe_math_impl.h", |
| 1522 "src/hase/smart-pointers.h", | 1522 "src/base/smart-pointers.h", |
| 1523 "src/base/sys-info.cc", | 1523 "src/base/sys-info.cc", |
| 1524 "src/base/sys-info.h", | 1524 "src/base/sys-info.h", |
| 1525 "src/base/utils/random-number-generator.cc", | 1525 "src/base/utils/random-number-generator.cc", |
| 1526 "src/base/utils/random-number-generator.h", | 1526 "src/base/utils/random-number-generator.h", |
| 1527 ] | 1527 ] |
| 1528 | 1528 |
| 1529 configs -= [ "//build/config/compiler:chromium_code" ] | 1529 configs -= [ "//build/config/compiler:chromium_code" ] |
| 1530 configs += [ "//build/config/compiler:no_chromium_code" ] | 1530 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 1531 configs += [ | 1531 configs += [ |
| 1532 ":internal_config_base", | 1532 ":internal_config_base", |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1756 "src/d8-debug.cc", | 1756 "src/d8-debug.cc", |
| 1757 "src/d8-debug.h", | 1757 "src/d8-debug.h", |
| 1758 "$target_gen_dir/d8-js.cc", | 1758 "$target_gen_dir/d8-js.cc", |
| 1759 ] | 1759 ] |
| 1760 } | 1760 } |
| 1761 if (v8_enable_i18n_support) { | 1761 if (v8_enable_i18n_support) { |
| 1762 deps += [ "//third_party/icu" ] | 1762 deps += [ "//third_party/icu" ] |
| 1763 } | 1763 } |
| 1764 } | 1764 } |
| 1765 } | 1765 } |
| OLD | NEW |