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 3362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5166 # settings in target dicts. SYMROOT is a special case, because many other | 5161 # settings in target dicts. SYMROOT is a special case, because many other |
5167 # Xcode variables depend on it, including variables such as | 5162 # Xcode variables depend on it, including variables such as |
5168 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5163 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5169 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5164 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5170 # files to appear (when present) in the UI as actual files and not red | 5165 # files to appear (when present) in the UI as actual files and not red |
5171 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5166 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5172 # and therefore SYMROOT, needs to be set at the project level. | 5167 # and therefore SYMROOT, needs to be set at the project level. |
5173 'SYMROOT': '<(DEPTH)/xcodebuild', | 5168 'SYMROOT': '<(DEPTH)/xcodebuild', |
5174 }, | 5169 }, |
5175 } | 5170 } |
OLD | NEW |