Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Side by Side Diff: build/common.gypi

Issue 7004029: Fix to make InputMethodIBus usable on every ChromeOS device (even without TouchUI) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Small fix to replace "if" with "?" Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | views/ime/input_method_ibus.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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', 'ca@valencia', 'eo', 'eu', 'gl', 'ka', 'ku', 'ug'], 559 'locales': ['ast', 'ca@valencia', 'eo', '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 use_ibus to 1 to enable ibus support.
568 ['touchui==1 and chromeos==1', { 568 ['touchui==1 and chromeos==1', {
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
(...skipping 1142 matching lines...) Expand 10 before | Expand all | Expand 10 after
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:
OLDNEW
« no previous file with comments | « no previous file | views/ime/input_method_ibus.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698