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

Side by Side Diff: build/common.gypi

Issue 1431723002: Add brotli content-encoding filter. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added Accept-Ecnoding test Created 5 years, 1 month 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/app/generated_resources.grd » ('j') | net/filter/filter.cc » ('J')
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 584 matching lines...) Expand 10 before | Expand all | Expand 10 after
595 595
596 # Enables support for background apps. 596 # Enables support for background apps.
597 'enable_background%': 1, 597 'enable_background%': 1,
598 598
599 # Enable the task manager by default. 599 # Enable the task manager by default.
600 'enable_task_manager%': 1, 600 'enable_task_manager%': 1,
601 601
602 # Enables used resource whitelist generation; disabled by default. 602 # Enables used resource whitelist generation; disabled by default.
603 'enable_resource_whitelist_generation%': 0, 603 'enable_resource_whitelist_generation%': 0,
604 604
605 # Enable BROTLI support by default.
606 'disable_brotli_support%': 0,
607
605 # Enable FILE support by default. 608 # Enable FILE support by default.
606 'disable_file_support%': 0, 609 'disable_file_support%': 0,
607 610
608 # Enable FTP support by default. 611 # Enable FTP support by default.
609 'disable_ftp_support%': 0, 612 'disable_ftp_support%': 0,
610 613
611 # Use of precompiled headers on Windows. 614 # Use of precompiled headers on Windows.
612 # 615 #
613 # This variable may be explicitly set to 1 (enabled) or 0 616 # This variable may be explicitly set to 1 (enabled) or 0
614 # (disabled) in ~/.gyp/include.gypi or via the GYP command line. 617 # (disabled) in ~/.gyp/include.gypi or via the GYP command line.
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
853 # Enable hotwording on Chrome-branded ChromeOS builds. 856 # Enable hotwording on Chrome-branded ChromeOS builds.
854 ['branding=="Chrome" and chromeos==1', { 857 ['branding=="Chrome" and chromeos==1', {
855 'enable_hotwording%': 1, 858 'enable_hotwording%': 1,
856 }], 859 }],
857 860
858 ['OS=="android"', { 861 ['OS=="android"', {
859 'enable_webrtc%': 1, 862 'enable_webrtc%': 1,
860 }], 863 }],
861 864
862 ['OS=="ios"', { 865 ['OS=="ios"', {
866 'disable_brotli_support%': 1,
863 'disable_ftp_support%': 1, 867 'disable_ftp_support%': 1,
864 'enable_extensions%': 0, 868 'enable_extensions%': 0,
865 'enable_google_now%': 0, 869 'enable_google_now%': 0,
866 'cld2_table_size%': 0, 870 'cld2_table_size%': 0,
867 'enable_basic_printing%': 0, 871 'enable_basic_printing%': 0,
868 'enable_print_preview%': 0, 872 'enable_print_preview%': 0,
869 'enable_session_service%': 0, 873 'enable_session_service%': 0,
870 'enable_spellcheck%': 0, 874 'enable_spellcheck%': 0,
871 'enable_themes%': 0, 875 'enable_themes%': 0,
872 'enable_webrtc%': 0, 876 'enable_webrtc%': 0,
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after
1213 'use_canvas_skia%': '<(use_canvas_skia)', 1217 'use_canvas_skia%': '<(use_canvas_skia)',
1214 'test_isolation_mode%': '<(test_isolation_mode)', 1218 'test_isolation_mode%': '<(test_isolation_mode)',
1215 'enable_basic_printing%': '<(enable_basic_printing)', 1219 'enable_basic_printing%': '<(enable_basic_printing)',
1216 'enable_print_preview%': '<(enable_print_preview)', 1220 'enable_print_preview%': '<(enable_print_preview)',
1217 'enable_spellcheck%': '<(enable_spellcheck)', 1221 'enable_spellcheck%': '<(enable_spellcheck)',
1218 'use_browser_spellchecker%': '<(use_browser_spellchecker)', 1222 'use_browser_spellchecker%': '<(use_browser_spellchecker)',
1219 'enable_google_now%': '<(enable_google_now)', 1223 'enable_google_now%': '<(enable_google_now)',
1220 'cld_version%': '<(cld_version)', 1224 'cld_version%': '<(cld_version)',
1221 'cld2_table_size%': '<(cld2_table_size)', 1225 'cld2_table_size%': '<(cld2_table_size)',
1222 'enable_captive_portal_detection%': '<(enable_captive_portal_detection)', 1226 'enable_captive_portal_detection%': '<(enable_captive_portal_detection)',
1227 'disable_brotli_support%': '<(disable_brotli_support)',
1223 'disable_file_support%': '<(disable_file_support)', 1228 'disable_file_support%': '<(disable_file_support)',
1224 'disable_ftp_support%': '<(disable_ftp_support)', 1229 'disable_ftp_support%': '<(disable_ftp_support)',
1225 'enable_task_manager%': '<(enable_task_manager)', 1230 'enable_task_manager%': '<(enable_task_manager)',
1226 'sas_dll_path%': '<(sas_dll_path)', 1231 'sas_dll_path%': '<(sas_dll_path)',
1227 'wix_path%': '<(wix_path)', 1232 'wix_path%': '<(wix_path)',
1228 'use_libjpeg_turbo%': '<(use_libjpeg_turbo)', 1233 'use_libjpeg_turbo%': '<(use_libjpeg_turbo)',
1229 'use_system_libjpeg%': '<(use_system_libjpeg)', 1234 'use_system_libjpeg%': '<(use_system_libjpeg)',
1230 'android_channel%': '<(android_channel)', 1235 'android_channel%': '<(android_channel)',
1231 'icu_use_data_file_flag%': '<(icu_use_data_file_flag)', 1236 'icu_use_data_file_flag%': '<(icu_use_data_file_flag)',
1232 'gyp_managed_install%': 0, 1237 'gyp_managed_install%': 0,
(...skipping 1784 matching lines...) Expand 10 before | Expand all | Expand 10 after
3017 }], 3022 }],
3018 ['enable_captive_portal_detection==1', { 3023 ['enable_captive_portal_detection==1', {
3019 'defines': ['ENABLE_CAPTIVE_PORTAL_DETECTION=1'], 3024 'defines': ['ENABLE_CAPTIVE_PORTAL_DETECTION=1'],
3020 }], 3025 }],
3021 ['enable_app_list==1', { 3026 ['enable_app_list==1', {
3022 'defines': ['ENABLE_APP_LIST=1'], 3027 'defines': ['ENABLE_APP_LIST=1'],
3023 }], 3028 }],
3024 ['enable_settings_app==1', { 3029 ['enable_settings_app==1', {
3025 'defines': ['ENABLE_SETTINGS_APP=1'], 3030 'defines': ['ENABLE_SETTINGS_APP=1'],
3026 }], 3031 }],
3032 ['disable_brotli_support==1', {
3033 'defines': ['DISABLE_BROTLI_SUPPORT=1'],
3034 }],
3027 ['disable_file_support==1', { 3035 ['disable_file_support==1', {
3028 'defines': ['DISABLE_FILE_SUPPORT=1'], 3036 'defines': ['DISABLE_FILE_SUPPORT=1'],
3029 }], 3037 }],
3030 ['disable_ftp_support==1', { 3038 ['disable_ftp_support==1', {
3031 'defines': ['DISABLE_FTP_SUPPORT=1'], 3039 'defines': ['DISABLE_FTP_SUPPORT=1'],
3032 }], 3040 }],
3033 ['enable_supervised_users==1', { 3041 ['enable_supervised_users==1', {
3034 'defines': ['ENABLE_SUPERVISED_USERS=1'], 3042 'defines': ['ENABLE_SUPERVISED_USERS=1'],
3035 }], 3043 }],
3036 ['enable_mdns==1', { 3044 ['enable_mdns==1', {
(...skipping 3335 matching lines...) Expand 10 before | Expand all | Expand 10 after
6372 # settings in target dicts. SYMROOT is a special case, because many other 6380 # settings in target dicts. SYMROOT is a special case, because many other
6373 # Xcode variables depend on it, including variables such as 6381 # Xcode variables depend on it, including variables such as
6374 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6382 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6375 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6383 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6376 # files to appear (when present) in the UI as actual files and not red 6384 # files to appear (when present) in the UI as actual files and not red
6377 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6385 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6378 # and therefore SYMROOT, needs to be set at the project level. 6386 # and therefore SYMROOT, needs to be set at the project level.
6379 'SYMROOT': '<(DEPTH)/xcodebuild', 6387 'SYMROOT': '<(DEPTH)/xcodebuild',
6380 }, 6388 },
6381 } 6389 }
OLDNEW
« no previous file with comments | « no previous file | chrome/app/generated_resources.grd » ('j') | net/filter/filter.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698