| 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 740 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 751 'chromium_code%': 0, | 751 'chromium_code%': 0, |
| 752 | 752 |
| 753 'release_valgrind_build%': 0, | 753 'release_valgrind_build%': 0, |
| 754 | 754 |
| 755 # TODO(thakis): Make this a blacklist instead, http://crbug.com/101600 | 755 # TODO(thakis): Make this a blacklist instead, http://crbug.com/101600 |
| 756 'enable_wexit_time_destructors%': 0, | 756 'enable_wexit_time_destructors%': 0, |
| 757 | 757 |
| 758 # Set to 1 to compile with the built in pdf viewer. | 758 # Set to 1 to compile with the built in pdf viewer. |
| 759 'internal_pdf%': 0, | 759 'internal_pdf%': 0, |
| 760 | 760 |
| 761 # This allows to use libcros from the current system, ie. /usr/lib/ | |
| 762 # The cros_api will be pulled in as a static library, and all headers | |
| 763 # from the system include dirs. | |
| 764 'system_libcros%': 0, | |
| 765 | |
| 766 # NOTE: When these end up in the Mac bundle, we need to replace '-' for '_' | 761 # NOTE: When these end up in the Mac bundle, we need to replace '-' for '_' |
| 767 # so Cocoa is happy (http://crbug.com/20441). | 762 # so Cocoa is happy (http://crbug.com/20441). |
| 768 'locales': [ | 763 'locales': [ |
| 769 'am', 'ar', 'bg', 'bn', 'ca', 'cs', 'da', 'de', 'el', 'en-GB', | 764 'am', 'ar', 'bg', 'bn', 'ca', 'cs', 'da', 'de', 'el', 'en-GB', |
| 770 'en-US', 'es-419', 'es', 'et', 'fa', 'fi', 'fil', 'fr', 'gu', 'he', | 765 'en-US', 'es-419', 'es', 'et', 'fa', 'fi', 'fil', 'fr', 'gu', 'he', |
| 771 'hi', 'hr', 'hu', 'id', 'it', 'ja', 'kn', 'ko', 'lt', 'lv', | 766 'hi', 'hr', 'hu', 'id', 'it', 'ja', 'kn', 'ko', 'lt', 'lv', |
| 772 'ml', 'mr', 'ms', 'nb', 'nl', 'pl', 'pt-BR', 'pt-PT', 'ro', 'ru', | 767 'ml', 'mr', 'ms', 'nb', 'nl', 'pl', 'pt-BR', 'pt-PT', 'ro', 'ru', |
| 773 'sk', 'sl', 'sr', 'sv', 'sw', 'ta', 'te', 'th', 'tr', 'uk', | 768 'sk', 'sl', 'sr', 'sv', 'sw', 'ta', 'te', 'th', 'tr', 'uk', |
| 774 'vi', 'zh-CN', 'zh-TW', | 769 'vi', 'zh-CN', 'zh-TW', |
| 775 ], | 770 ], |
| (...skipping 2358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3134 # settings in target dicts. SYMROOT is a special case, because many other | 3129 # settings in target dicts. SYMROOT is a special case, because many other |
| 3135 # Xcode variables depend on it, including variables such as | 3130 # Xcode variables depend on it, including variables such as |
| 3136 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3131 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 3137 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3132 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 3138 # files to appear (when present) in the UI as actual files and not red | 3133 # files to appear (when present) in the UI as actual files and not red |
| 3139 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3134 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 3140 # and therefore SYMROOT, needs to be set at the project level. | 3135 # and therefore SYMROOT, needs to be set at the project level. |
| 3141 'SYMROOT': '<(DEPTH)/xcodebuild', | 3136 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 3142 }, | 3137 }, |
| 3143 } | 3138 } |
| OLD | NEW |