| 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 # TODO(jochen): These will need to be user-settable to support standalone V8 | 5 # TODO(jochen): These will need to be user-settable to support standalone V8 |
| 6 # builds. | 6 # builds. |
| 7 v8_compress_startup_data = "off" | 7 v8_compress_startup_data = "off" |
| 8 v8_deprecation_warnings = false | 8 v8_deprecation_warnings = false |
| 9 v8_enable_disassembler = false | 9 v8_enable_disassembler = false |
| 10 v8_enable_gdbjit = false | 10 v8_enable_gdbjit = false |
| (...skipping 1165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1176 "src/base/platform/condition-variable.h", | 1176 "src/base/platform/condition-variable.h", |
| 1177 "src/base/platform/mutex.cc", | 1177 "src/base/platform/mutex.cc", |
| 1178 "src/base/platform/mutex.h", | 1178 "src/base/platform/mutex.h", |
| 1179 "src/base/platform/platform.h", | 1179 "src/base/platform/platform.h", |
| 1180 "src/base/platform/semaphore.cc", | 1180 "src/base/platform/semaphore.cc", |
| 1181 "src/base/platform/semaphore.h", | 1181 "src/base/platform/semaphore.h", |
| 1182 "src/base/safe_conversions.h", | 1182 "src/base/safe_conversions.h", |
| 1183 "src/base/safe_conversions_impl.h", | 1183 "src/base/safe_conversions_impl.h", |
| 1184 "src/base/safe_math.h", | 1184 "src/base/safe_math.h", |
| 1185 "src/base/safe_math_impl.h", | 1185 "src/base/safe_math_impl.h", |
| 1186 "src/base/sys-info.cc", |
| 1187 "src/base/sys-info.h", |
| 1186 "src/base/utils/random-number-generator.cc", | 1188 "src/base/utils/random-number-generator.cc", |
| 1187 "src/base/utils/random-number-generator.h", | 1189 "src/base/utils/random-number-generator.h", |
| 1188 ] | 1190 ] |
| 1189 | 1191 |
| 1190 configs -= [ "//build/config/compiler:chromium_code" ] | 1192 configs -= [ "//build/config/compiler:chromium_code" ] |
| 1191 configs += [ "//build/config/compiler:no_chromium_code" ] | 1193 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 1192 configs += [ ":internal_config_base", ":features", ":toolchain" ] | 1194 configs += [ ":internal_config_base", ":features", ":toolchain" ] |
| 1193 | 1195 |
| 1194 defines = [] | 1196 defines = [] |
| 1195 | 1197 |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1343 deps = [ | 1345 deps = [ |
| 1344 ":v8_base", | 1346 ":v8_base", |
| 1345 ":v8_nosnapshot", | 1347 ":v8_nosnapshot", |
| 1346 ] | 1348 ] |
| 1347 } | 1349 } |
| 1348 | 1350 |
| 1349 direct_dependent_configs = [ ":external_config" ] | 1351 direct_dependent_configs = [ ":external_config" ] |
| 1350 } | 1352 } |
| 1351 | 1353 |
| 1352 } | 1354 } |
| OLD | NEW |