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

Side by Side Diff: build/common.gypi

Issue 1204293003: Patch 3: Added files for platform-based spellcheck. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@platform_flag
Patch Set: Comment cleanup Created 5 years, 5 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
OLDNEW
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 793 matching lines...) Expand 10 before | Expand all | Expand 10 after
804 804
805 ['OS=="win" or OS=="mac" or (OS=="linux" and chromeos==0)', { 805 ['OS=="win" or OS=="mac" or (OS=="linux" and chromeos==0)', {
806 'enable_one_click_signin%': 1, 806 'enable_one_click_signin%': 1,
807 'enable_pre_sync_backup%': 1, 807 'enable_pre_sync_backup%': 1,
808 }], 808 }],
809 809
810 ['OS=="android"', { 810 ['OS=="android"', {
811 'enable_extensions%': 0, 811 'enable_extensions%': 0,
812 'enable_google_now%': 0, 812 'enable_google_now%': 0,
813 'cld_version%': 1, 813 'cld_version%': 1,
814 'enable_spellcheck%': 0,
815 'enable_themes%': 0, 814 'enable_themes%': 0,
816 'remoting%': 0, 815 'remoting%': 0,
817 'arm_neon%': 0, 816 'arm_neon%': 0,
818 'arm_neon_optional%': 1, 817 'arm_neon_optional%': 1,
819 'native_memory_pressure_signals%': 1, 818 'native_memory_pressure_signals%': 1,
820 'enable_basic_printing%': 1, 819 'enable_basic_printing%': 1,
821 'enable_print_preview%': 0, 820 'enable_print_preview%': 0,
822 'enable_task_manager%':0, 821 'enable_task_manager%':0,
823 'video_hole%': 1, 822 'video_hole%': 1,
824 }], 823 }],
825 824
826 # OSX has a built-in spellchecker can be utilized. 825 # Android and OSX have built-in spellcheckers that can be utilized.
827 ['OS=="mac"', { 826 ['OS=="android" or OS=="mac"', {
828 'use_platform_spellchecker%': 1, 827 'use_platform_spellchecker%': 1,
829 }], 828 }],
830 829
831 # Android OS includes support for proprietary codecs regardless of 830 # Android OS includes support for proprietary codecs regardless of
832 # building Chromium or Google Chrome. We also ship Google Chrome and 831 # building Chromium or Google Chrome. We also ship Google Chrome and
833 # Chromecast with proprietary codecs. 832 # Chromecast with proprietary codecs.
834 ['OS=="android" or branding=="Chrome" or chromecast==1', { 833 ['OS=="android" or branding=="Chrome" or chromecast==1', {
835 'proprietary_codecs%': 1, 834 'proprietary_codecs%': 1,
836 }, { 835 }, {
837 'proprietary_codecs%': 0, 836 'proprietary_codecs%': 0,
(...skipping 5372 matching lines...) Expand 10 before | Expand all | Expand 10 after
6210 # settings in target dicts. SYMROOT is a special case, because many other 6209 # settings in target dicts. SYMROOT is a special case, because many other
6211 # Xcode variables depend on it, including variables such as 6210 # Xcode variables depend on it, including variables such as
6212 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6211 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6213 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6212 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6214 # files to appear (when present) in the UI as actual files and not red 6213 # files to appear (when present) in the UI as actual files and not red
6215 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6214 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6216 # and therefore SYMROOT, needs to be set at the project level. 6215 # and therefore SYMROOT, needs to be set at the project level.
6217 'SYMROOT': '<(DEPTH)/xcodebuild', 6216 'SYMROOT': '<(DEPTH)/xcodebuild',
6218 }, 6217 },
6219 } 6218 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698