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

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: Fixed nit 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 | « no previous file | chrome/app/generated_resources.grd » ('j') | net/filter/brotli_filter_unittest.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 579 matching lines...) Expand 10 before | Expand all | Expand 10 after
590 590
591 # Enables support for background apps. 591 # Enables support for background apps.
592 'enable_background%': 1, 592 'enable_background%': 1,
593 593
594 # Enable the task manager by default. 594 # Enable the task manager by default.
595 'enable_task_manager%': 1, 595 'enable_task_manager%': 1,
596 596
597 # Enables used resource whitelist generation; disabled by default. 597 # Enables used resource whitelist generation; disabled by default.
598 'enable_resource_whitelist_generation%': 0, 598 'enable_resource_whitelist_generation%': 0,
599 599
600 # Enable BROTLI support by default.
601 'disable_brotli_support%': 0,
602
600 # Enable FILE support by default. 603 # Enable FILE support by default.
601 'disable_file_support%': 0, 604 'disable_file_support%': 0,
602 605
603 # Enable FTP support by default. 606 # Enable FTP support by default.
604 'disable_ftp_support%': 0, 607 'disable_ftp_support%': 0,
605 608
606 # Use of precompiled headers on Windows. 609 # Use of precompiled headers on Windows.
607 # 610 #
608 # This variable may be explicitly set to 1 (enabled) or 0 611 # This variable may be explicitly set to 1 (enabled) or 0
609 # (disabled) in ~/.gyp/include.gypi or via the GYP command line. 612 # (disabled) in ~/.gyp/include.gypi or via the GYP command line.
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
851 ['branding=="Chrome" and chromeos==1', { 854 ['branding=="Chrome" and chromeos==1', {
852 'enable_hotwording%': 1, 855 'enable_hotwording%': 1,
853 }], 856 }],
854 857
855 ['OS=="android"', { 858 ['OS=="android"', {
856 'enable_webrtc%': 1, 859 'enable_webrtc%': 1,
857 }], 860 }],
858 861
859 ['OS=="ios"', { 862 ['OS=="ios"', {
860 'configuration_policy%': 0, 863 'configuration_policy%': 0,
864 'disable_brotli_support%': 1,
861 'disable_ftp_support%': 1, 865 'disable_ftp_support%': 1,
862 'enable_extensions%': 0, 866 'enable_extensions%': 0,
863 'cld2_table_size%': 0, 867 'cld2_table_size%': 0,
864 'enable_basic_printing%': 0, 868 'enable_basic_printing%': 0,
865 'enable_print_preview%': 0, 869 'enable_print_preview%': 0,
866 'enable_session_service%': 0, 870 'enable_session_service%': 0,
867 'enable_spellcheck%': 0, 871 'enable_spellcheck%': 0,
868 'enable_themes%': 0, 872 'enable_themes%': 0,
869 'enable_webrtc%': 0, 873 'enable_webrtc%': 0,
870 'notifications%': 0, 874 'notifications%': 0,
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
1208 'linux_use_debug_fission%': '<(linux_use_debug_fission)', 1212 'linux_use_debug_fission%': '<(linux_use_debug_fission)',
1209 'use_canvas_skia%': '<(use_canvas_skia)', 1213 'use_canvas_skia%': '<(use_canvas_skia)',
1210 'test_isolation_mode%': '<(test_isolation_mode)', 1214 'test_isolation_mode%': '<(test_isolation_mode)',
1211 'enable_basic_printing%': '<(enable_basic_printing)', 1215 'enable_basic_printing%': '<(enable_basic_printing)',
1212 'enable_print_preview%': '<(enable_print_preview)', 1216 'enable_print_preview%': '<(enable_print_preview)',
1213 'enable_spellcheck%': '<(enable_spellcheck)', 1217 'enable_spellcheck%': '<(enable_spellcheck)',
1214 'use_browser_spellchecker%': '<(use_browser_spellchecker)', 1218 'use_browser_spellchecker%': '<(use_browser_spellchecker)',
1215 'cld_version%': '<(cld_version)', 1219 'cld_version%': '<(cld_version)',
1216 'cld2_table_size%': '<(cld2_table_size)', 1220 'cld2_table_size%': '<(cld2_table_size)',
1217 'enable_captive_portal_detection%': '<(enable_captive_portal_detection)', 1221 'enable_captive_portal_detection%': '<(enable_captive_portal_detection)',
1222 'disable_brotli_support%': '<(disable_brotli_support)',
1218 'disable_file_support%': '<(disable_file_support)', 1223 'disable_file_support%': '<(disable_file_support)',
1219 'disable_ftp_support%': '<(disable_ftp_support)', 1224 'disable_ftp_support%': '<(disable_ftp_support)',
1220 'enable_task_manager%': '<(enable_task_manager)', 1225 'enable_task_manager%': '<(enable_task_manager)',
1221 'sas_dll_path%': '<(sas_dll_path)', 1226 'sas_dll_path%': '<(sas_dll_path)',
1222 'wix_path%': '<(wix_path)', 1227 'wix_path%': '<(wix_path)',
1223 'use_libjpeg_turbo%': '<(use_libjpeg_turbo)', 1228 'use_libjpeg_turbo%': '<(use_libjpeg_turbo)',
1224 'use_system_libjpeg%': '<(use_system_libjpeg)', 1229 'use_system_libjpeg%': '<(use_system_libjpeg)',
1225 'android_channel%': '<(android_channel)', 1230 'android_channel%': '<(android_channel)',
1226 'icu_use_data_file_flag%': '<(icu_use_data_file_flag)', 1231 'icu_use_data_file_flag%': '<(icu_use_data_file_flag)',
1227 'gyp_managed_install%': 0, 1232 'gyp_managed_install%': 0,
(...skipping 1797 matching lines...) Expand 10 before | Expand all | Expand 10 after
3025 }], 3030 }],
3026 ['enable_captive_portal_detection==1', { 3031 ['enable_captive_portal_detection==1', {
3027 'defines': ['ENABLE_CAPTIVE_PORTAL_DETECTION=1'], 3032 'defines': ['ENABLE_CAPTIVE_PORTAL_DETECTION=1'],
3028 }], 3033 }],
3029 ['enable_app_list==1', { 3034 ['enable_app_list==1', {
3030 'defines': ['ENABLE_APP_LIST=1'], 3035 'defines': ['ENABLE_APP_LIST=1'],
3031 }], 3036 }],
3032 ['enable_settings_app==1', { 3037 ['enable_settings_app==1', {
3033 'defines': ['ENABLE_SETTINGS_APP=1'], 3038 'defines': ['ENABLE_SETTINGS_APP=1'],
3034 }], 3039 }],
3040 ['disable_brotli_support==1', {
3041 'defines': ['DISABLE_BROTLI_SUPPORT=1'],
3042 }],
3035 ['disable_file_support==1', { 3043 ['disable_file_support==1', {
3036 'defines': ['DISABLE_FILE_SUPPORT=1'], 3044 'defines': ['DISABLE_FILE_SUPPORT=1'],
3037 }], 3045 }],
3038 ['disable_ftp_support==1', { 3046 ['disable_ftp_support==1', {
3039 'defines': ['DISABLE_FTP_SUPPORT=1'], 3047 'defines': ['DISABLE_FTP_SUPPORT=1'],
3040 }], 3048 }],
3041 ['enable_supervised_users==1', { 3049 ['enable_supervised_users==1', {
3042 'defines': ['ENABLE_SUPERVISED_USERS=1'], 3050 'defines': ['ENABLE_SUPERVISED_USERS=1'],
3043 }], 3051 }],
3044 ['enable_mdns==1', { 3052 ['enable_mdns==1', {
(...skipping 3328 matching lines...) Expand 10 before | Expand all | Expand 10 after
6373 # settings in target dicts. SYMROOT is a special case, because many other 6381 # settings in target dicts. SYMROOT is a special case, because many other
6374 # Xcode variables depend on it, including variables such as 6382 # Xcode variables depend on it, including variables such as
6375 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6383 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6376 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6384 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6377 # files to appear (when present) in the UI as actual files and not red 6385 # files to appear (when present) in the UI as actual files and not red
6378 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6386 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6379 # and therefore SYMROOT, needs to be set at the project level. 6387 # and therefore SYMROOT, needs to be set at the project level.
6380 'SYMROOT': '<(DEPTH)/xcodebuild', 6388 'SYMROOT': '<(DEPTH)/xcodebuild',
6381 }, 6389 },
6382 } 6390 }
OLDNEW
« no previous file with comments | « no previous file | chrome/app/generated_resources.grd » ('j') | net/filter/brotli_filter_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698