blob: 406b674caf90f5817031af6af94092ea40247b84 [file] [log] [blame]
dsinclair685bb882016-04-20 07:32:39 -07001# 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
5buildconfig = "//build/config/BUILDCONFIG.gn"
Nicolas Penae818bcb2017-02-09 14:37:49 -05006
K. Moon00a55f82021-10-04 16:58:40 +00007# The python interpreter to use by default. On Windows, this will look
8# for python3.exe and python3.bat.
9script_executable = "python3"
10
Nicolas Penae818bcb2017-02-09 14:37:49 -050011default_args = {
Lei Zhang96c19b32021-09-09 00:19:52 +000012 # PDFs only need to run JavaScript.
13 v8_enable_webassembly = false
14
Nicolas Penae818bcb2017-02-09 14:37:49 -050015 # Turns on compiler optimizations in V8 in Debug build.
16 v8_optimized_debug = true
Lei Zhange88bb292022-07-01 17:28:22 +000017
18 # PDFium is currently incompatible with the V8 Sandbox.
19 # See https://crbug.com/v8/13014 for details.
20 v8_enable_sandbox = false
Nicolas Penae818bcb2017-02-09 14:37:49 -050021}
Lei Zhangbfc5f602018-10-11 19:28:08 +000022
Lei Zhang24204472020-08-22 00:51:02 +000023no_check_targets = [
24 "//third_party/icu/*",
Dan Elphick05673a32021-09-09 15:42:55 +000025 "//v8:cppgc_base",
26 "//v8:v8_internal_headers",
27 "//v8/src/inspector:inspector",
28 "//v8/test/cctest:cctest_sources",
Hui Yingstf00bbeb2022-09-08 19:36:34 +000029 "//v8/test/unittests:inspector_unittests_sources",
Lei Zhangbfc5f602018-10-11 19:28:08 +000030]