Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2016 The Chromium 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 # On Android there's no system FreeType. On Windows and Mac, only a few | |
| 6 # methods are used from it. | |
| 7 pdfium_bundle_freetype = !is_linux | |
| 8 | |
| 9 # Enable use of Javascript in PDFs. | |
| 10 pdf_enable_v8 = true | |
| 11 | |
| 12 # Disable XFA forms in Chromium builds. | |
| 13 pdf_enable_xfa = false | |
| 14 | |
| 15 # Disable use of Skia backend. | |
| 16 pdf_use_skia = false | |
| 17 | |
| 18 # Build is part of Chrome, not standalone. | |
| 19 pdf_is_standalone = false | |
|
Dirk Pranke
2016/04/28 00:53:12
You could theoretically use the build_with_chromiu
dsinclair
2016/04/28 14:14:45
My preference is to not tie this to chromium as PD
| |
| OLD | NEW |