| OLD | NEW |
| 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 894 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 905 ['OS=="android" or OS=="ios" or (embedded==1 and chromecast==0)', { | 905 ['OS=="android" or OS=="ios" or (embedded==1 and chromecast==0)', { |
| 906 'enable_pdf%': 0, | 906 'enable_pdf%': 0, |
| 907 'pdf_enable_v8%': 0, | 907 'pdf_enable_v8%': 0, |
| 908 }, { | 908 }, { |
| 909 'enable_pdf%': 1, | 909 'enable_pdf%': 1, |
| 910 'pdf_enable_v8%': 1, | 910 'pdf_enable_v8%': 1, |
| 911 }], | 911 }], |
| 912 ['chromeos==1 or OS=="android" or OS=="ios" or (embedded==1 and chromeca
st==0)', { | 912 ['chromeos==1 or OS=="android" or OS=="ios" or (embedded==1 and chromeca
st==0)', { |
| 913 'pdf_enable_xfa%': 0, | 913 'pdf_enable_xfa%': 0, |
| 914 }, { | 914 }, { |
| 915 'pdf_enable_xfa%': 1, | 915 'pdf_enable_xfa%': 0, # Reverted pending crbug.com/596373 |
| 916 }], | 916 }], |
| 917 | 917 |
| 918 ['chromeos==1 or OS=="android" or OS=="ios" or desktop_linux==1', { | 918 ['chromeos==1 or OS=="android" or OS=="ios" or desktop_linux==1', { |
| 919 'enable_plugin_installation%': 0, | 919 'enable_plugin_installation%': 0, |
| 920 }, { | 920 }, { |
| 921 'enable_plugin_installation%': 1, | 921 'enable_plugin_installation%': 1, |
| 922 }], | 922 }], |
| 923 | 923 |
| 924 # Whether PPAPI is enabled. | 924 # Whether PPAPI is enabled. |
| 925 ['OS=="android" or OS=="ios" or (embedded==1 and chromecast==0)', { | 925 ['OS=="android" or OS=="ios" or (embedded==1 and chromecast==0)', { |
| (...skipping 5475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6401 # settings in target dicts. SYMROOT is a special case, because many other | 6401 # settings in target dicts. SYMROOT is a special case, because many other |
| 6402 # Xcode variables depend on it, including variables such as | 6402 # Xcode variables depend on it, including variables such as |
| 6403 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6403 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 6404 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6404 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 6405 # files to appear (when present) in the UI as actual files and not red | 6405 # files to appear (when present) in the UI as actual files and not red |
| 6406 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6406 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 6407 # and therefore SYMROOT, needs to be set at the project level. | 6407 # and therefore SYMROOT, needs to be set at the project level. |
| 6408 'SYMROOT': '<(DEPTH)/xcodebuild', | 6408 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 6409 }, | 6409 }, |
| 6410 } | 6410 } |
| OLD | NEW |