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

Side by Side Diff: build/common.gypi

Issue 1487873003: Convert enable_pre_sync_backup flag to new flags system. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Created 5 years 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 | « build/buildflag_header.gypi ('k') | build/config/BUILD.gn » ('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 520 matching lines...) Expand 10 before | Expand all | Expand 10 after
531 # See https://sites.google.com/a/google.com/chrome-msk/dev/boot-speed-up-e ffort 531 # See https://sites.google.com/a/google.com/chrome-msk/dev/boot-speed-up-e ffort
532 'order_text_section%' : "", 532 'order_text_section%' : "",
533 533
534 # Set to 1 compile with -fPIC cflag on linux. This is a must for shared 534 # Set to 1 compile with -fPIC cflag on linux. This is a must for shared
535 # libraries on linux x86-64 and arm, plus ASLR. 535 # libraries on linux x86-64 and arm, plus ASLR.
536 'linux_fpic%': 1, 536 'linux_fpic%': 1,
537 537
538 # Whether one-click signin is enabled or not. 538 # Whether one-click signin is enabled or not.
539 'enable_one_click_signin%': 0, 539 'enable_one_click_signin%': 0,
540 540
541 # Whether to back up data before sync.
542 'enable_pre_sync_backup%': 0,
543
544 # Enable Chrome browser extensions 541 # Enable Chrome browser extensions
545 'enable_extensions%': 1, 542 'enable_extensions%': 1,
546 543
547 # Enable basic printing support and UI. 544 # Enable basic printing support and UI.
548 'enable_basic_printing%': 1, 545 'enable_basic_printing%': 1,
549 546
550 # Enable printing with print preview. It does not imply 547 # Enable printing with print preview. It does not imply
551 # enable_basic_printing. It's possible to build Chrome with preview only. 548 # enable_basic_printing. It's possible to build Chrome with preview only.
552 'enable_print_preview%': 1, 549 'enable_print_preview%': 1,
553 550
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
805 802
806 # Enable loader extensions on Chrome OS. 803 # Enable loader extensions on Chrome OS.
807 ['chromeos==1', { 804 ['chromeos==1', {
808 'image_loader_extension%': 1, 805 'image_loader_extension%': 1,
809 }, { 806 }, {
810 'image_loader_extension%': 0, 807 'image_loader_extension%': 0,
811 }], 808 }],
812 809
813 ['OS=="win" or OS=="mac" or (OS=="linux" and chromeos==0)', { 810 ['OS=="win" or OS=="mac" or (OS=="linux" and chromeos==0)', {
814 'enable_one_click_signin%': 1, 811 'enable_one_click_signin%': 1,
815 'enable_pre_sync_backup%': 1,
816 }], 812 }],
817 813
818 ['OS=="android"', { 814 ['OS=="android"', {
819 'enable_extensions%': 0, 815 'enable_extensions%': 0,
820 'cld2_table_size%': 0, 816 'cld2_table_size%': 0,
821 'enable_themes%': 0, 817 'enable_themes%': 0,
822 'remoting%': 0, 818 'remoting%': 0,
823 'arm_neon%': 0, 819 'arm_neon%': 0,
824 'arm_neon_optional%': 1, 820 'arm_neon_optional%': 1,
825 'enable_basic_printing%': 1, 821 'enable_basic_printing%': 1,
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
1156 'pkg-config%': '<(pkg-config)', 1152 'pkg-config%': '<(pkg-config)',
1157 'chroot_cmd%': '<(chroot_cmd)', 1153 'chroot_cmd%': '<(chroot_cmd)',
1158 'system_libdir%': '<(system_libdir)', 1154 'system_libdir%': '<(system_libdir)',
1159 'component%': '<(component)', 1155 'component%': '<(component)',
1160 'win_analyze%': '<(win_analyze)', 1156 'win_analyze%': '<(win_analyze)',
1161 'win_fastlink%': '<(win_fastlink)', 1157 'win_fastlink%': '<(win_fastlink)',
1162 'enable_resource_whitelist_generation%': '<(enable_resource_whitelist_genera tion)', 1158 'enable_resource_whitelist_generation%': '<(enable_resource_whitelist_genera tion)',
1163 'use_titlecase_in_grd%': '<(use_titlecase_in_grd)', 1159 'use_titlecase_in_grd%': '<(use_titlecase_in_grd)',
1164 'remoting%': '<(remoting)', 1160 'remoting%': '<(remoting)',
1165 'enable_one_click_signin%': '<(enable_one_click_signin)', 1161 'enable_one_click_signin%': '<(enable_one_click_signin)',
1166 'enable_pre_sync_backup%': '<(enable_pre_sync_backup)',
1167 'enable_media_router%': '<(enable_media_router)', 1162 'enable_media_router%': '<(enable_media_router)',
1168 'enable_webrtc%': '<(enable_webrtc)', 1163 'enable_webrtc%': '<(enable_webrtc)',
1169 'chromium_win_pch%': '<(chromium_win_pch)', 1164 'chromium_win_pch%': '<(chromium_win_pch)',
1170 'configuration_policy%': '<(configuration_policy)', 1165 'configuration_policy%': '<(configuration_policy)',
1171 'safe_browsing%': '<(safe_browsing)', 1166 'safe_browsing%': '<(safe_browsing)',
1172 'enable_web_speech%': '<(enable_web_speech)', 1167 'enable_web_speech%': '<(enable_web_speech)',
1173 'enable_hotwording%': '<(enable_hotwording)', 1168 'enable_hotwording%': '<(enable_hotwording)',
1174 'notifications%': '<(notifications)', 1169 'notifications%': '<(notifications)',
1175 'clang_use_chrome_plugins%': '<(clang_use_chrome_plugins)', 1170 'clang_use_chrome_plugins%': '<(clang_use_chrome_plugins)',
1176 'mac_want_real_dsym%': '<(mac_want_real_dsym)', 1171 'mac_want_real_dsym%': '<(mac_want_real_dsym)',
(...skipping 1551 matching lines...) Expand 10 before | Expand all | Expand 10 after
2728 }], 2723 }],
2729 ['use_x11==1', { 2724 ['use_x11==1', {
2730 'defines': ['USE_X11=1'], 2725 'defines': ['USE_X11=1'],
2731 }], 2726 }],
2732 ['use_clipboard_aurax11==1', { 2727 ['use_clipboard_aurax11==1', {
2733 'defines': ['USE_CLIPBOARD_AURAX11=1'], 2728 'defines': ['USE_CLIPBOARD_AURAX11=1'],
2734 }], 2729 }],
2735 ['enable_one_click_signin==1', { 2730 ['enable_one_click_signin==1', {
2736 'defines': ['ENABLE_ONE_CLICK_SIGNIN'], 2731 'defines': ['ENABLE_ONE_CLICK_SIGNIN'],
2737 }], 2732 }],
2738 ['enable_pre_sync_backup==1', {
2739 'defines': ['ENABLE_PRE_SYNC_BACKUP'],
2740 }],
2741 ['image_loader_extension==1', { 2733 ['image_loader_extension==1', {
2742 'defines': ['IMAGE_LOADER_EXTENSION=1'], 2734 'defines': ['IMAGE_LOADER_EXTENSION=1'],
2743 }], 2735 }],
2744 ['profiling==1', { 2736 ['profiling==1', {
2745 'defines': ['ENABLE_PROFILING=1'], 2737 'defines': ['ENABLE_PROFILING=1'],
2746 }], 2738 }],
2747 ['enable_webrtc==1', { 2739 ['enable_webrtc==1', {
2748 'defines': ['ENABLE_WEBRTC=1'], 2740 'defines': ['ENABLE_WEBRTC=1'],
2749 }], 2741 }],
2750 ['enable_media_router==1', { 2742 ['enable_media_router==1', {
(...skipping 3636 matching lines...) Expand 10 before | Expand all | Expand 10 after
6387 # settings in target dicts. SYMROOT is a special case, because many other 6379 # settings in target dicts. SYMROOT is a special case, because many other
6388 # Xcode variables depend on it, including variables such as 6380 # Xcode variables depend on it, including variables such as
6389 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6381 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6390 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6382 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6391 # files to appear (when present) in the UI as actual files and not red 6383 # files to appear (when present) in the UI as actual files and not red
6392 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6384 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6393 # and therefore SYMROOT, needs to be set at the project level. 6385 # and therefore SYMROOT, needs to be set at the project level.
6394 'SYMROOT': '<(DEPTH)/xcodebuild', 6386 'SYMROOT': '<(DEPTH)/xcodebuild',
6395 }, 6387 },
6396 } 6388 }
OLDNEW
« no previous file with comments | « build/buildflag_header.gypi ('k') | build/config/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698