Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 644 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 655 }], | 655 }], |
| 656 ['remoting==1', { | 656 ['remoting==1', { |
| 657 'grit_defines': ['-D', 'remoting'], | 657 'grit_defines': ['-D', 'remoting'], |
| 658 }], | 658 }], |
| 659 ['use_titlecase_in_grd_files==1', { | 659 ['use_titlecase_in_grd_files==1', { |
| 660 'grit_defines': ['-D', 'use_titlecase'], | 660 'grit_defines': ['-D', 'use_titlecase'], |
| 661 }], | 661 }], |
| 662 ['use_third_party_translations==1', { | 662 ['use_third_party_translations==1', { |
| 663 'grit_defines': ['-D', 'use_third_party_translations'], | 663 'grit_defines': ['-D', 'use_third_party_translations'], |
| 664 'locales': [ | 664 'locales': [ |
| 665 'ast', 'bs', 'ca@valencia', 'eo', 'eu', 'gl', 'hy', 'ia', 'ka', 'ku', | 665 'ast', 'bs', 'ca@valencia', 'en-AU', 'eo', 'eu', 'gl', 'hy', 'ia', 'ka ', |
|
tony
2011/08/08 17:52:40
Nit: Wrap 'ka' too to avoid going over 80 cols. Y
| |
| 666 'kw', 'ug', | 666 'ku', 'kw', 'ug', |
| 667 ], | 667 ], |
| 668 }], | 668 }], |
| 669 | 669 |
| 670 ['clang_use_chrome_plugins==1', { | 670 ['clang_use_chrome_plugins==1', { |
| 671 'clang_chrome_plugins_flags': | 671 'clang_chrome_plugins_flags': |
| 672 '<!(<(DEPTH)/tools/clang/scripts/plugin_flags.sh)', | 672 '<!(<(DEPTH)/tools/clang/scripts/plugin_flags.sh)', |
| 673 }], | 673 }], |
| 674 | 674 |
| 675 # Set use_ibus to 1 to enable ibus support. | 675 # Set use_ibus to 1 to enable ibus support. |
| 676 ['touchui==1 and chromeos==1', { | 676 ['touchui==1 and chromeos==1', { |
| (...skipping 1248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1925 # settings in target dicts. SYMROOT is a special case, because many other | 1925 # settings in target dicts. SYMROOT is a special case, because many other |
| 1926 # Xcode variables depend on it, including variables such as | 1926 # Xcode variables depend on it, including variables such as |
| 1927 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 1927 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 1928 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 1928 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 1929 # files to appear (when present) in the UI as actual files and not red | 1929 # files to appear (when present) in the UI as actual files and not red |
| 1930 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 1930 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 1931 # and therefore SYMROOT, needs to be set at the project level. | 1931 # and therefore SYMROOT, needs to be set at the project level. |
| 1932 'SYMROOT': '<(DEPTH)/xcodebuild', | 1932 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 1933 }, | 1933 }, |
| 1934 } | 1934 } |
| OLD | NEW |