Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: build/standalone.gypi

Issue 1508003003: Move default value of pdf_enable_xfa to standalone.gypi (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: Moar GN Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « BUILD.gn ('k') | pdfium.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 PDFium Authors. All rights reserved. 1 # Copyright 2014 PDFium 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 # Definitions to be used when building stand-alone PDFium binaries. 5 # Definitions to be used when building stand-alone PDFium binaries.
6 6
7 { 7 {
8 'variables': { 8 'variables': {
9 'component%': 'static_library', 9 'component%': 'static_library',
10 'clang%': 0, 10 'clang%': 0,
11 'asan%': 0, 11 'asan%': 0,
12 'sanitizer_coverage%': 0, 12 'sanitizer_coverage%': 0,
13 'use_goma%': 0, 13 'use_goma%': 0,
14 'gomadir%': '', 14 'gomadir%': '',
15 'msvs_multi_core_compile%': '1', 15 'msvs_multi_core_compile%': '1',
16 'pdf_enable_xfa%': 1,
16 'variables': { 17 'variables': {
17 'variables': { 18 'variables': {
18 'variables': { 19 'variables': {
19 'conditions': [ 20 'conditions': [
20 ['OS=="linux" or OS=="mac"', { 21 ['OS=="linux" or OS=="mac"', {
21 # This handles the Unix platforms we generally deal with. 22 # This handles the Unix platforms we generally deal with.
22 # Anything else gets passed through, which probably won't work 23 # Anything else gets passed through, which probably won't work
23 # very well; such hosts should pass an explicit target_arch 24 # very well; such hosts should pass an explicit target_arch
24 # to gyp. 25 # to gyp.
25 'host_arch%': 26 'host_arch%':
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 ], 336 ],
336 }], # OS=="linux" or OS=="mac" 337 }], # OS=="linux" or OS=="mac"
337 ["use_goma==1", { 338 ["use_goma==1", {
338 'make_global_settings': [ 339 'make_global_settings': [
339 ['CC_wrapper', '<(gomadir)/gomacc'], 340 ['CC_wrapper', '<(gomadir)/gomacc'],
340 ['CXX_wrapper', '<(gomadir)/gomacc'], 341 ['CXX_wrapper', '<(gomadir)/gomacc'],
341 ], 342 ],
342 }], # use_goma==1 343 }], # use_goma==1
343 ], 344 ],
344 } 345 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | pdfium.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698