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

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: Add brotli reference link 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') | chrome/browser/io_thread.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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
841 # Enable hotwording on Chrome-branded ChromeOS builds. 844 # Enable hotwording on Chrome-branded ChromeOS builds.
842 ['branding=="Chrome" and chromeos==1', { 845 ['branding=="Chrome" and chromeos==1', {
843 'enable_hotwording%': 1, 846 'enable_hotwording%': 1,
844 }], 847 }],
845 848
846 ['OS=="android"', { 849 ['OS=="android"', {
847 'enable_webrtc%': 1, 850 'enable_webrtc%': 1,
848 }], 851 }],
849 852
850 ['OS=="ios"', { 853 ['OS=="ios"', {
854 'disable_brotli_support%': 1,
851 'disable_ftp_support%': 1, 855 'disable_ftp_support%': 1,
852 'enable_extensions%': 0, 856 'enable_extensions%': 0,
853 'enable_google_now%': 0, 857 'enable_google_now%': 0,
854 'cld2_table_size%': 0, 858 'cld2_table_size%': 0,
855 'enable_basic_printing%': 0, 859 'enable_basic_printing%': 0,
856 'enable_print_preview%': 0, 860 'enable_print_preview%': 0,
857 'enable_session_service%': 0, 861 'enable_session_service%': 0,
858 'enable_spellcheck%': 0, 862 'enable_spellcheck%': 0,
859 'enable_themes%': 0, 863 'enable_themes%': 0,
860 'enable_webrtc%': 0, 864 'enable_webrtc%': 0,
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
1200 'use_canvas_skia%': '<(use_canvas_skia)', 1204 'use_canvas_skia%': '<(use_canvas_skia)',
1201 'test_isolation_mode%': '<(test_isolation_mode)', 1205 'test_isolation_mode%': '<(test_isolation_mode)',
1202 'enable_basic_printing%': '<(enable_basic_printing)', 1206 'enable_basic_printing%': '<(enable_basic_printing)',
1203 'enable_print_preview%': '<(enable_print_preview)', 1207 'enable_print_preview%': '<(enable_print_preview)',
1204 'enable_spellcheck%': '<(enable_spellcheck)', 1208 'enable_spellcheck%': '<(enable_spellcheck)',
1205 'use_browser_spellchecker%': '<(use_browser_spellchecker)', 1209 'use_browser_spellchecker%': '<(use_browser_spellchecker)',
1206 'enable_google_now%': '<(enable_google_now)', 1210 'enable_google_now%': '<(enable_google_now)',
1207 'cld_version%': '<(cld_version)', 1211 'cld_version%': '<(cld_version)',
1208 'cld2_table_size%': '<(cld2_table_size)', 1212 'cld2_table_size%': '<(cld2_table_size)',
1209 'enable_captive_portal_detection%': '<(enable_captive_portal_detection)', 1213 'enable_captive_portal_detection%': '<(enable_captive_portal_detection)',
1214 'disable_brotli_support%': '<(disable_brotli_support)',
1210 'disable_file_support%': '<(disable_file_support)', 1215 'disable_file_support%': '<(disable_file_support)',
1211 'disable_ftp_support%': '<(disable_ftp_support)', 1216 'disable_ftp_support%': '<(disable_ftp_support)',
1212 'enable_task_manager%': '<(enable_task_manager)', 1217 'enable_task_manager%': '<(enable_task_manager)',
1213 'sas_dll_path%': '<(sas_dll_path)', 1218 'sas_dll_path%': '<(sas_dll_path)',
1214 'wix_path%': '<(wix_path)', 1219 'wix_path%': '<(wix_path)',
1215 'use_libjpeg_turbo%': '<(use_libjpeg_turbo)', 1220 'use_libjpeg_turbo%': '<(use_libjpeg_turbo)',
1216 'use_system_libjpeg%': '<(use_system_libjpeg)', 1221 'use_system_libjpeg%': '<(use_system_libjpeg)',
1217 'android_channel%': '<(android_channel)', 1222 'android_channel%': '<(android_channel)',
1218 'icu_use_data_file_flag%': '<(icu_use_data_file_flag)', 1223 'icu_use_data_file_flag%': '<(icu_use_data_file_flag)',
1219 'gyp_managed_install%': 0, 1224 'gyp_managed_install%': 0,
(...skipping 1779 matching lines...) Expand 10 before | Expand all | Expand 10 after
2999 }], 3004 }],
3000 ['enable_captive_portal_detection==1', { 3005 ['enable_captive_portal_detection==1', {
3001 'defines': ['ENABLE_CAPTIVE_PORTAL_DETECTION=1'], 3006 'defines': ['ENABLE_CAPTIVE_PORTAL_DETECTION=1'],
3002 }], 3007 }],
3003 ['enable_app_list==1', { 3008 ['enable_app_list==1', {
3004 'defines': ['ENABLE_APP_LIST=1'], 3009 'defines': ['ENABLE_APP_LIST=1'],
3005 }], 3010 }],
3006 ['enable_settings_app==1', { 3011 ['enable_settings_app==1', {
3007 'defines': ['ENABLE_SETTINGS_APP=1'], 3012 'defines': ['ENABLE_SETTINGS_APP=1'],
3008 }], 3013 }],
3014 ['disable_brotli_support==1', {
3015 'defines': ['DISABLE_BROTLI_SUPPORT=1'],
3016 }],
3009 ['disable_file_support==1', { 3017 ['disable_file_support==1', {
3010 'defines': ['DISABLE_FILE_SUPPORT=1'], 3018 'defines': ['DISABLE_FILE_SUPPORT=1'],
3011 }], 3019 }],
3012 ['disable_ftp_support==1', { 3020 ['disable_ftp_support==1', {
3013 'defines': ['DISABLE_FTP_SUPPORT=1'], 3021 'defines': ['DISABLE_FTP_SUPPORT=1'],
3014 }], 3022 }],
3015 ['enable_supervised_users==1', { 3023 ['enable_supervised_users==1', {
3016 'defines': ['ENABLE_SUPERVISED_USERS=1'], 3024 'defines': ['ENABLE_SUPERVISED_USERS=1'],
3017 }], 3025 }],
3018 ['enable_mdns==1', { 3026 ['enable_mdns==1', {
(...skipping 3332 matching lines...) Expand 10 before | Expand all | Expand 10 after
6351 # settings in target dicts. SYMROOT is a special case, because many other 6359 # settings in target dicts. SYMROOT is a special case, because many other
6352 # Xcode variables depend on it, including variables such as 6360 # Xcode variables depend on it, including variables such as
6353 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6361 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6354 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6362 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6355 # files to appear (when present) in the UI as actual files and not red 6363 # files to appear (when present) in the UI as actual files and not red
6356 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6364 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6357 # and therefore SYMROOT, needs to be set at the project level. 6365 # and therefore SYMROOT, needs to be set at the project level.
6358 'SYMROOT': '<(DEPTH)/xcodebuild', 6366 'SYMROOT': '<(DEPTH)/xcodebuild',
6359 }, 6367 },
6360 } 6368 }
OLDNEW
« no previous file with comments | « no previous file | chrome/app/generated_resources.grd » ('j') | chrome/browser/io_thread.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698