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

Side by Side Diff: build/common.gypi

Issue 1230933002: Patch 3.1: Refactored spellcheck_message_filter to be generic (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@platform_flag
Patch Set: Updated gn build variable to match gyp side 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
« no previous file with comments | « no previous file | build/config/features.gni » ('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) 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 5365 matching lines...) Expand 10 before | Expand all | Expand 10 after
6203 # settings in target dicts. SYMROOT is a special case, because many other 6202 # settings in target dicts. SYMROOT is a special case, because many other
6204 # Xcode variables depend on it, including variables such as 6203 # Xcode variables depend on it, including variables such as
6205 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6204 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6206 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6205 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6207 # files to appear (when present) in the UI as actual files and not red 6206 # files to appear (when present) in the UI as actual files and not red
6208 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6207 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6209 # and therefore SYMROOT, needs to be set at the project level. 6208 # and therefore SYMROOT, needs to be set at the project level.
6210 'SYMROOT': '<(DEPTH)/xcodebuild', 6209 'SYMROOT': '<(DEPTH)/xcodebuild',
6211 }, 6210 },
6212 } 6211 }
OLDNEW
« no previous file with comments | « no previous file | build/config/features.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698