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

Side by Side Diff: build/common.gypi

Issue 1012223002: Add flag to disable full PAN storage. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 9 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 | chrome/browser/ui/autofill/card_unmask_prompt_controller_impl.cc » ('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 1003 matching lines...) Expand 10 before | Expand all | Expand 10 after
1014 'optimize_jni_generation%': 0, 1014 'optimize_jni_generation%': 0,
1015 }], 1015 }],
1016 1016
1017 # TODO(rmcilroy): Enable v8_use_external_startup_data on ChromeOS 1017 # TODO(rmcilroy): Enable v8_use_external_startup_data on ChromeOS
1018 # http://crbug.com/421063 1018 # http://crbug.com/421063
1019 ['android_webview_build==0 and chromecast==0 and chromeos==0 and OS!="io s"', { 1019 ['android_webview_build==0 and chromecast==0 and chromeos==0 and OS!="io s"', {
1020 'v8_use_external_startup_data%': 1, 1020 'v8_use_external_startup_data%': 1,
1021 }, { 1021 }, {
1022 'v8_use_external_startup_data%': 0, 1022 'v8_use_external_startup_data%': 0,
1023 }], 1023 }],
1024
1025 # Controls whether Wallet cards can be saved to the local instance of
1026 # chrome. TODO(estade): set to 0 for Linux before M43 branch.
1027 ['desktop_linux==1', {
1028 'enable_save_wallet_cards_locally%': 1,
1029 }, {
1030 'enable_save_wallet_cards_locally%': 1,
1031 }],
1032
1024 ], 1033 ],
1025 1034
1026 # Set this to 1 to enable use of concatenated impulse responses 1035 # Set this to 1 to enable use of concatenated impulse responses
1027 # for the HRTF panner in WebAudio. 1036 # for the HRTF panner in WebAudio.
1028 'use_concatenated_impulse_responses': 1, 1037 'use_concatenated_impulse_responses': 1,
1029 1038
1030 # You can set the variable 'use_official_google_api_keys' to 1 1039 # You can set the variable 'use_official_google_api_keys' to 1
1031 # to use the Google-internal file containing official API keys 1040 # to use the Google-internal file containing official API keys
1032 # for Google Chrome even in a developer build. Setting this 1041 # for Google Chrome even in a developer build. Setting this
1033 # variable explicitly to 1 will cause your build to fail if the 1042 # variable explicitly to 1 will cause your build to fail if the
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
1165 'clang_type_profiler%': '<(clang_type_profiler)', 1174 'clang_type_profiler%': '<(clang_type_profiler)',
1166 'order_profiling%': '<(order_profiling)', 1175 'order_profiling%': '<(order_profiling)',
1167 'order_text_section%': '<(order_text_section)', 1176 'order_text_section%': '<(order_text_section)',
1168 'enable_extensions%': '<(enable_extensions)', 1177 'enable_extensions%': '<(enable_extensions)',
1169 'enable_plugin_installation%': '<(enable_plugin_installation)', 1178 'enable_plugin_installation%': '<(enable_plugin_installation)',
1170 'enable_plugins%': '<(enable_plugins)', 1179 'enable_plugins%': '<(enable_plugins)',
1171 'enable_session_service%': '<(enable_session_service)', 1180 'enable_session_service%': '<(enable_session_service)',
1172 'enable_themes%': '<(enable_themes)', 1181 'enable_themes%': '<(enable_themes)',
1173 'enable_autofill_dialog%': '<(enable_autofill_dialog)', 1182 'enable_autofill_dialog%': '<(enable_autofill_dialog)',
1174 'enable_prod_wallet_service%': '<(enable_prod_wallet_service)', 1183 'enable_prod_wallet_service%': '<(enable_prod_wallet_service)',
1184 'enable_save_wallet_cards_locally%': '<(enable_save_wallet_cards_locally)',
1175 'enable_background%': '<(enable_background)', 1185 'enable_background%': '<(enable_background)',
1176 'linux_use_bundled_gold%': '<(linux_use_bundled_gold)', 1186 'linux_use_bundled_gold%': '<(linux_use_bundled_gold)',
1177 'linux_use_bundled_binutils%': '<(linux_use_bundled_binutils)', 1187 'linux_use_bundled_binutils%': '<(linux_use_bundled_binutils)',
1178 'linux_use_gold_flags%': '<(linux_use_gold_flags)', 1188 'linux_use_gold_flags%': '<(linux_use_gold_flags)',
1179 'linux_use_debug_fission%': '<(linux_use_debug_fission)', 1189 'linux_use_debug_fission%': '<(linux_use_debug_fission)',
1180 'use_canvas_skia%': '<(use_canvas_skia)', 1190 'use_canvas_skia%': '<(use_canvas_skia)',
1181 'test_isolation_mode%': '<(test_isolation_mode)', 1191 'test_isolation_mode%': '<(test_isolation_mode)',
1182 'test_isolation_outdir%': '<(test_isolation_outdir)', 1192 'test_isolation_outdir%': '<(test_isolation_outdir)',
1183 'enable_basic_printing%': '<(enable_basic_printing)', 1193 'enable_basic_printing%': '<(enable_basic_printing)',
1184 'enable_print_preview%': '<(enable_print_preview)', 1194 'enable_print_preview%': '<(enable_print_preview)',
(...skipping 1750 matching lines...) Expand 10 before | Expand all | Expand 10 after
2935 }], 2945 }],
2936 ['enable_themes==1', { 2946 ['enable_themes==1', {
2937 'defines': ['ENABLE_THEMES=1'], 2947 'defines': ['ENABLE_THEMES=1'],
2938 }], 2948 }],
2939 ['enable_autofill_dialog==1', { 2949 ['enable_autofill_dialog==1', {
2940 'defines': ['ENABLE_AUTOFILL_DIALOG=1'], 2950 'defines': ['ENABLE_AUTOFILL_DIALOG=1'],
2941 }], 2951 }],
2942 ['enable_prod_wallet_service==1', { 2952 ['enable_prod_wallet_service==1', {
2943 'defines': ['ENABLE_PROD_WALLET_SERVICE=1'], 2953 'defines': ['ENABLE_PROD_WALLET_SERVICE=1'],
2944 }], 2954 }],
2955 ['enable_save_wallet_cards_locally==1', {
2956 'defines': ['ENABLE_SAVE_WALLET_CARDS_LOCALLY=1'],
2957 }],
2945 ['enable_background==1', { 2958 ['enable_background==1', {
2946 'defines': ['ENABLE_BACKGROUND=1'], 2959 'defines': ['ENABLE_BACKGROUND=1'],
2947 }], 2960 }],
2948 ['enable_google_now==1', { 2961 ['enable_google_now==1', {
2949 'defines': ['ENABLE_GOOGLE_NOW=1'], 2962 'defines': ['ENABLE_GOOGLE_NOW=1'],
2950 }], 2963 }],
2951 ['cld_version!=0', { 2964 ['cld_version!=0', {
2952 'defines': ['CLD_VERSION=<(cld_version)'], 2965 'defines': ['CLD_VERSION=<(cld_version)'],
2953 }], 2966 }],
2954 ['enable_basic_printing==1 or enable_print_preview==1', { 2967 ['enable_basic_printing==1 or enable_print_preview==1', {
(...skipping 3136 matching lines...) Expand 10 before | Expand all | Expand 10 after
6091 # settings in target dicts. SYMROOT is a special case, because many other 6104 # settings in target dicts. SYMROOT is a special case, because many other
6092 # Xcode variables depend on it, including variables such as 6105 # Xcode variables depend on it, including variables such as
6093 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6106 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6094 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6107 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6095 # files to appear (when present) in the UI as actual files and not red 6108 # files to appear (when present) in the UI as actual files and not red
6096 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6109 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6097 # and therefore SYMROOT, needs to be set at the project level. 6110 # and therefore SYMROOT, needs to be set at the project level.
6098 'SYMROOT': '<(DEPTH)/xcodebuild', 6111 'SYMROOT': '<(DEPTH)/xcodebuild',
6099 }, 6112 },
6100 } 6113 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/autofill/card_unmask_prompt_controller_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698