dsinclair | 685bb88 | 2016-04-20 07:32:39 -0700 | [diff] [blame] | 1 | # Copyright 2016 PDFium Authors. All rights reserved. |
| 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | |
| 5 | buildconfig = "//build/config/BUILDCONFIG.gn" |
Nicolas Pena | e818bcb | 2017-02-09 14:37:49 -0500 | [diff] [blame] | 6 | |
K. Moon | 00a55f8 | 2021-10-04 16:58:40 +0000 | [diff] [blame] | 7 | # The python interpreter to use by default. On Windows, this will look |
| 8 | # for python3.exe and python3.bat. |
| 9 | script_executable = "python3" |
| 10 | |
Nicolas Pena | e818bcb | 2017-02-09 14:37:49 -0500 | [diff] [blame] | 11 | default_args = { |
Lei Zhang | 96c19b3 | 2021-09-09 00:19:52 +0000 | [diff] [blame] | 12 | # PDFs only need to run JavaScript. |
| 13 | v8_enable_webassembly = false |
| 14 | |
Nicolas Pena | e818bcb | 2017-02-09 14:37:49 -0500 | [diff] [blame] | 15 | # Turns on compiler optimizations in V8 in Debug build. |
| 16 | v8_optimized_debug = true |
Lei Zhang | e88bb29 | 2022-07-01 17:28:22 +0000 | [diff] [blame] | 17 | |
| 18 | # PDFium is currently incompatible with the V8 Sandbox. |
| 19 | # See https://crbug.com/v8/13014 for details. |
| 20 | v8_enable_sandbox = false |
Nicolas Pena | e818bcb | 2017-02-09 14:37:49 -0500 | [diff] [blame] | 21 | } |
Lei Zhang | bfc5f60 | 2018-10-11 19:28:08 +0000 | [diff] [blame] | 22 | |
Lei Zhang | 2420447 | 2020-08-22 00:51:02 +0000 | [diff] [blame] | 23 | no_check_targets = [ |
| 24 | "//third_party/icu/*", |
Dan Elphick | 05673a3 | 2021-09-09 15:42:55 +0000 | [diff] [blame] | 25 | "//v8:cppgc_base", |
| 26 | "//v8:v8_internal_headers", |
| 27 | "//v8/src/inspector:inspector", |
| 28 | "//v8/test/cctest:cctest_sources", |
Hui Yingst | f00bbeb | 2022-09-08 19:36:34 +0000 | [diff] [blame] | 29 | "//v8/test/unittests:inspector_unittests_sources", |
Lei Zhang | bfc5f60 | 2018-10-11 19:28:08 +0000 | [diff] [blame] | 30 | ] |