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

Side by Side Diff: build/common.gypi

Issue 1326503003: Added a net::BidirectionalStream to expose a bidirectional streaming interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Misha's comments 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 | net/BUILD.gn » ('j') | net/http/http_stream_factory_impl.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 587 matching lines...) Expand 10 before | Expand all | Expand 10 after
598 598
599 # Enables support for background apps. 599 # Enables support for background apps.
600 'enable_background%': 1, 600 'enable_background%': 1,
601 601
602 # Enable the task manager by default. 602 # Enable the task manager by default.
603 'enable_task_manager%': 1, 603 'enable_task_manager%': 1,
604 604
605 # Enables used resource whitelist generation; disabled by default. 605 # Enables used resource whitelist generation; disabled by default.
606 'enable_resource_whitelist_generation%': 0, 606 'enable_resource_whitelist_generation%': 0,
607 607
608 # Enables BidrectionalSteam; disabled by default.
Nico 2015/12/22 19:12:35 This is just a new class, why is this behind a bui
mef 2015/12/22 22:32:38 It is needed to expose bidirectional streaming API
609 'enable_bidirectional_stream': 0,
610
608 # Enable FILE support by default. 611 # Enable FILE support by default.
609 'disable_file_support%': 0, 612 'disable_file_support%': 0,
610 613
611 # Enable FTP support by default. 614 # Enable FTP support by default.
612 'disable_ftp_support%': 0, 615 'disable_ftp_support%': 0,
613 616
614 # Use of precompiled headers on Windows. 617 # Use of precompiled headers on Windows.
615 # 618 #
616 # This variable may be explicitly set to 1 (enabled) or 0 619 # This variable may be explicitly set to 1 (enabled) or 0
617 # (disabled) in ~/.gyp/include.gypi or via the GYP command line. 620 # (disabled) in ~/.gyp/include.gypi or via the GYP command line.
(...skipping 604 matching lines...) Expand 10 before | Expand all | Expand 10 after
1222 'test_isolation_mode%': '<(test_isolation_mode)', 1225 'test_isolation_mode%': '<(test_isolation_mode)',
1223 'enable_basic_printing%': '<(enable_basic_printing)', 1226 'enable_basic_printing%': '<(enable_basic_printing)',
1224 'enable_print_preview%': '<(enable_print_preview)', 1227 'enable_print_preview%': '<(enable_print_preview)',
1225 'enable_spellcheck%': '<(enable_spellcheck)', 1228 'enable_spellcheck%': '<(enable_spellcheck)',
1226 'use_browser_spellchecker%': '<(use_browser_spellchecker)', 1229 'use_browser_spellchecker%': '<(use_browser_spellchecker)',
1227 'cld_version%': '<(cld_version)', 1230 'cld_version%': '<(cld_version)',
1228 'cld2_table_size%': '<(cld2_table_size)', 1231 'cld2_table_size%': '<(cld2_table_size)',
1229 'enable_captive_portal_detection%': '<(enable_captive_portal_detection)', 1232 'enable_captive_portal_detection%': '<(enable_captive_portal_detection)',
1230 'disable_file_support%': '<(disable_file_support)', 1233 'disable_file_support%': '<(disable_file_support)',
1231 'disable_ftp_support%': '<(disable_ftp_support)', 1234 'disable_ftp_support%': '<(disable_ftp_support)',
1235 'enable_bidirectional_stream%': '<(enable_bidirectional_stream)',
1232 'enable_task_manager%': '<(enable_task_manager)', 1236 'enable_task_manager%': '<(enable_task_manager)',
1233 'sas_dll_path%': '<(sas_dll_path)', 1237 'sas_dll_path%': '<(sas_dll_path)',
1234 'wix_path%': '<(wix_path)', 1238 'wix_path%': '<(wix_path)',
1235 'use_libjpeg_turbo%': '<(use_libjpeg_turbo)', 1239 'use_libjpeg_turbo%': '<(use_libjpeg_turbo)',
1236 'use_system_libjpeg%': '<(use_system_libjpeg)', 1240 'use_system_libjpeg%': '<(use_system_libjpeg)',
1237 'android_channel%': '<(android_channel)', 1241 'android_channel%': '<(android_channel)',
1238 'icu_use_data_file_flag%': '<(icu_use_data_file_flag)', 1242 'icu_use_data_file_flag%': '<(icu_use_data_file_flag)',
1239 'gyp_managed_install%': 0, 1243 'gyp_managed_install%': 0,
1240 'create_standalone_apk%': 1, 1244 'create_standalone_apk%': 1,
1241 'enable_app_list%': '<(enable_app_list)', 1245 'enable_app_list%': '<(enable_app_list)',
(...skipping 5179 matching lines...) Expand 10 before | Expand all | Expand 10 after
6421 # settings in target dicts. SYMROOT is a special case, because many other 6425 # settings in target dicts. SYMROOT is a special case, because many other
6422 # Xcode variables depend on it, including variables such as 6426 # Xcode variables depend on it, including variables such as
6423 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6427 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6424 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6428 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6425 # files to appear (when present) in the UI as actual files and not red 6429 # files to appear (when present) in the UI as actual files and not red
6426 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6430 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6427 # and therefore SYMROOT, needs to be set at the project level. 6431 # and therefore SYMROOT, needs to be set at the project level.
6428 'SYMROOT': '<(DEPTH)/xcodebuild', 6432 'SYMROOT': '<(DEPTH)/xcodebuild',
6429 }, 6433 },
6430 } 6434 }
OLDNEW
« no previous file with comments | « no previous file | net/BUILD.gn » ('j') | net/http/http_stream_factory_impl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698