| 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 1363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1374 ] | 1374 ] |
| 1375 | 1375 |
| 1376 configs -= [ "//build/config/compiler:chromium_code" ] | 1376 configs -= [ "//build/config/compiler:chromium_code" ] |
| 1377 configs += [ "//build/config/compiler:no_chromium_code" ] | 1377 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 1378 configs += [ ":internal_config", ":features", ":toolchain" ] | 1378 configs += [ ":internal_config", ":features", ":toolchain" ] |
| 1379 | 1379 |
| 1380 deps = [ | 1380 deps = [ |
| 1381 ":v8_base", | 1381 ":v8_base", |
| 1382 ":v8_libplatform", | 1382 ":v8_libplatform", |
| 1383 ":v8_nosnapshot", | 1383 ":v8_nosnapshot", |
| 1384 "//build/config/sanitizers:deps", |
| 1384 ] | 1385 ] |
| 1385 | 1386 |
| 1386 if (v8_compress_startup_data == "bz2") { | 1387 if (v8_compress_startup_data == "bz2") { |
| 1387 libs = [ "bz2" ] | 1388 libs = [ "bz2" ] |
| 1388 } | 1389 } |
| 1389 } | 1390 } |
| 1390 } | 1391 } |
| 1391 | 1392 |
| 1392 ############################################################################### | 1393 ############################################################################### |
| 1393 # Public targets | 1394 # Public targets |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1446 deps = [ | 1447 deps = [ |
| 1447 ":v8_base", | 1448 ":v8_base", |
| 1448 ":v8_nosnapshot", | 1449 ":v8_nosnapshot", |
| 1449 ] | 1450 ] |
| 1450 } | 1451 } |
| 1451 | 1452 |
| 1452 direct_dependent_configs = [ ":external_config" ] | 1453 direct_dependent_configs = [ ":external_config" ] |
| 1453 } | 1454 } |
| 1454 | 1455 |
| 1455 } | 1456 } |
| OLD | NEW |