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 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 557 ['use_third_party_translations==1', { | 557 ['use_third_party_translations==1', { |
| 558 'grit_defines': ['-D', 'use_third_party_translations'], | 558 'grit_defines': ['-D', 'use_third_party_translations'], |
| 559 'locales': ['ast', 'eu', 'gl', 'ka', 'ku', 'ug'], | 559 'locales': ['ast', 'eu', 'gl', 'ka', 'ku', 'ug'], |
| 560 }], | 560 }], |
| 561 | 561 |
| 562 ['clang_use_chrome_plugins==1', { | 562 ['clang_use_chrome_plugins==1', { |
| 563 'clang_chrome_plugins_flags': | 563 'clang_chrome_plugins_flags': |
| 564 '<!(<(DEPTH)/tools/clang/scripts/plugin_flags.sh)', | 564 '<!(<(DEPTH)/tools/clang/scripts/plugin_flags.sh)', |
| 565 }], | 565 }], |
| 566 | 566 |
| 567 # Set 1 to enable ibus support. Currently it is only supported in touchui. | 567 # Set 1 to enable ibus support. |
| 568 ['touchui==1 and chromeos==1', { | 568 ['chromeos==1', { |
|
oshima
2011/05/20 21:47:31
please keep touchui=1. If one wants to use ibus on
hashimoto
2011/05/20 22:18:13
What 'use_ibus=1' does is simply adding IBus to de
| |
| 569 'use_ibus%': 1, | 569 'use_ibus%': 1, |
| 570 }, { | 570 }, { |
| 571 'use_ibus%': 0, | 571 'use_ibus%': 0, |
| 572 }] | 572 }] |
| 573 ], | 573 ], |
| 574 }, | 574 }, |
| 575 'target_defaults': { | 575 'target_defaults': { |
| 576 'variables': { | 576 'variables': { |
| 577 # The condition that operates on chromium_code is in a target_conditions | 577 # The condition that operates on chromium_code is in a target_conditions |
| 578 # section, and will not have access to the default fallback value of | 578 # section, and will not have access to the default fallback value of |
| (...skipping 1141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1720 # and therefore SYMROOT, needs to be set at the project level. | 1720 # and therefore SYMROOT, needs to be set at the project level. |
| 1721 'SYMROOT': '<(DEPTH)/xcodebuild', | 1721 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 1722 }, | 1722 }, |
| 1723 } | 1723 } |
| 1724 | 1724 |
| 1725 # Local Variables: | 1725 # Local Variables: |
| 1726 # tab-width:2 | 1726 # tab-width:2 |
| 1727 # indent-tabs-mode:nil | 1727 # indent-tabs-mode:nil |
| 1728 # End: | 1728 # End: |
| 1729 # vim: set expandtab tabstop=2 shiftwidth=2: | 1729 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |