| 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 1768 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1779 }], | 1779 }], |
| 1780 ['image_loader_extension==1', { | 1780 ['image_loader_extension==1', { |
| 1781 'grit_defines': ['-D', 'image_loader_extension'], | 1781 'grit_defines': ['-D', 'image_loader_extension'], |
| 1782 }], | 1782 }], |
| 1783 ['remoting==1', { | 1783 ['remoting==1', { |
| 1784 'grit_defines': ['-D', 'remoting'], | 1784 'grit_defines': ['-D', 'remoting'], |
| 1785 }], | 1785 }], |
| 1786 ['use_titlecase_in_grd_files==1', { | 1786 ['use_titlecase_in_grd_files==1', { |
| 1787 'grit_defines': ['-D', 'use_titlecase'], | 1787 'grit_defines': ['-D', 'use_titlecase'], |
| 1788 }], | 1788 }], |
| 1789 ['OS=="android" and (target_arch=="ia32" or target_arch=="x64")', { | |
| 1790 # WebAudio on Android/x86 is disabled by default, unlike | |
| 1791 # everywhere else, so use appropriate message. | |
| 1792 'grit_defines': ['-D', 'use_webaudio_enable_message'], | |
| 1793 }], | |
| 1794 ['use_third_party_translations==1', { | 1789 ['use_third_party_translations==1', { |
| 1795 'grit_defines': ['-D', 'use_third_party_translations'], | 1790 'grit_defines': ['-D', 'use_third_party_translations'], |
| 1796 'locales': [ | 1791 'locales': [ |
| 1797 'ast', 'bs', 'ca@valencia', 'en-AU', 'eo', 'eu', 'gl', 'hy', 'ia', | 1792 'ast', 'bs', 'ca@valencia', 'en-AU', 'eo', 'eu', 'gl', 'hy', 'ia', |
| 1798 'ka', 'ku', 'kw', 'ms', 'ug' | 1793 'ka', 'ku', 'kw', 'ms', 'ug' |
| 1799 ], | 1794 ], |
| 1800 }], | 1795 }], |
| 1801 ['OS=="android"', { | 1796 ['OS=="android"', { |
| 1802 'grit_defines': ['-t', 'android', | 1797 'grit_defines': ['-t', 'android', |
| 1803 '-E', 'ANDROID_JAVA_TAGGED_ONLY=true'], | 1798 '-E', 'ANDROID_JAVA_TAGGED_ONLY=true'], |
| (...skipping 3348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5152 # settings in target dicts. SYMROOT is a special case, because many other | 5147 # settings in target dicts. SYMROOT is a special case, because many other |
| 5153 # Xcode variables depend on it, including variables such as | 5148 # Xcode variables depend on it, including variables such as |
| 5154 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5149 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 5155 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5150 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 5156 # files to appear (when present) in the UI as actual files and not red | 5151 # files to appear (when present) in the UI as actual files and not red |
| 5157 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5152 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 5158 # and therefore SYMROOT, needs to be set at the project level. | 5153 # and therefore SYMROOT, needs to be set at the project level. |
| 5159 'SYMROOT': '<(DEPTH)/xcodebuild', | 5154 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 5160 }, | 5155 }, |
| 5161 } | 5156 } |
| OLD | NEW |