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

Side by Side Diff: build/common.gypi

Issue 1950123002: Enable XFA forms in the PDF plugin. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase to master Created 4 years, 7 months 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 | « no previous file | build_overrides/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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium 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 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 # Variables expected to be overriden on the GYP command line (-D) or by 9 # Variables expected to be overriden on the GYP command line (-D) or by
10 # ~/.gyp/include.gypi. 10 # ~/.gyp/include.gypi.
(...skipping 869 matching lines...) Expand 10 before | Expand all | Expand 10 after
880 }], 880 }],
881 881
882 # Whether PDF plugin is enabled, and which options it supports. 882 # Whether PDF plugin is enabled, and which options it supports.
883 ['OS=="android" or OS=="ios" or (embedded==1 and chromecast==0)', { 883 ['OS=="android" or OS=="ios" or (embedded==1 and chromecast==0)', {
884 'enable_pdf%': 0, 884 'enable_pdf%': 0,
885 'pdf_enable_v8%': 0, 885 'pdf_enable_v8%': 0,
886 }, { 886 }, {
887 'enable_pdf%': 1, 887 'enable_pdf%': 1,
888 'pdf_enable_v8%': 1, 888 'pdf_enable_v8%': 1,
889 }], 889 }],
890 ['chromeos==1 or OS=="android" or OS=="ios" or (embedded==1 and chromeca st==0)', { 890 ['OS=="android" or OS=="ios" or (embedded==1 and chromecast==0)', {
891 'pdf_enable_xfa%': 0, 891 'pdf_enable_xfa%': 0,
892 }, { 892 }, {
893 'pdf_enable_xfa%': 0, # Reverted pending crbug.com/596373 893 'pdf_enable_xfa%': 1,
894 }], 894 }],
895 895
896 ['chromeos==1 or OS=="android" or OS=="ios" or desktop_linux==1', { 896 ['chromeos==1 or OS=="android" or OS=="ios" or desktop_linux==1', {
897 'enable_plugin_installation%': 0, 897 'enable_plugin_installation%': 0,
898 }, { 898 }, {
899 'enable_plugin_installation%': 1, 899 'enable_plugin_installation%': 1,
900 }], 900 }],
901 901
902 # Whether PPAPI is enabled. 902 # Whether PPAPI is enabled.
903 ['OS=="android" or OS=="ios" or (embedded==1 and chromecast==0)', { 903 ['OS=="android" or OS=="ios" or (embedded==1 and chromecast==0)', {
(...skipping 5408 matching lines...) Expand 10 before | Expand all | Expand 10 after
6312 # settings in target dicts. SYMROOT is a special case, because many other 6312 # settings in target dicts. SYMROOT is a special case, because many other
6313 # Xcode variables depend on it, including variables such as 6313 # Xcode variables depend on it, including variables such as
6314 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6314 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6315 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6315 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6316 # files to appear (when present) in the UI as actual files and not red 6316 # files to appear (when present) in the UI as actual files and not red
6317 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6317 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6318 # and therefore SYMROOT, needs to be set at the project level. 6318 # and therefore SYMROOT, needs to be set at the project level.
6319 'SYMROOT': '<(DEPTH)/xcodebuild', 6319 'SYMROOT': '<(DEPTH)/xcodebuild',
6320 }, 6320 },
6321 } 6321 }
OLDNEW
« no previous file with comments | « no previous file | build_overrides/pdfium.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698