| 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 872 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 ['OS=="android" or OS=="ios" or (embedded==1 and chromecast==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%': 1, | 893 'pdf_enable_xfa%': 0, |
| 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 5407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6311 # settings in target dicts. SYMROOT is a special case, because many other | 6311 # settings in target dicts. SYMROOT is a special case, because many other |
| 6312 # Xcode variables depend on it, including variables such as | 6312 # Xcode variables depend on it, including variables such as |
| 6313 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6313 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 6314 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6314 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 6315 # files to appear (when present) in the UI as actual files and not red | 6315 # files to appear (when present) in the UI as actual files and not red |
| 6316 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6316 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 6317 # and therefore SYMROOT, needs to be set at the project level. | 6317 # and therefore SYMROOT, needs to be set at the project level. |
| 6318 'SYMROOT': '<(DEPTH)/xcodebuild', | 6318 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 6319 }, | 6319 }, |
| 6320 } | 6320 } |
| OLD | NEW |