• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2016 The PDFium Authors
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5# TODO(crbug.com/pdfium/1932): Switch back to //build/config/BUILDCONFIG.gn if
6# appropriate.
7buildconfig = "//build_overrides/BUILDCONFIG.gn"
8
9# The python interpreter to use by default. On Windows, this will look
10# for python3.exe and python3.bat.
11script_executable = "python3"
12
13default_args = {
14  # Required for the Fuchsia SDK
15  fuchsia_target_api_level = 11
16
17  # PDFs only need to run JavaScript.
18  v8_enable_webassembly = false
19
20  # Turns on compiler optimizations in V8 in Debug build.
21  v8_optimized_debug = true
22
23  # PDFium is currently incompatible with the V8 Sandbox.
24  # See https://crbug.com/v8/13014 for details.
25  v8_enable_sandbox = false
26}
27
28no_check_targets = [
29  # See https://crbug.com/v8/7330 and/or check if these entries exist in
30  # Chromium's //.gn file.
31  "//v8:cppgc_base",
32  "//v8:v8_internal_headers",
33  "//v8/src/inspector:inspector",
34  "//v8/test/cctest:cctest_sources",
35  "//v8/test/unittests:inspector_unittests_sources",
36]
37