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

Side by Side Diff: build/common.gypi

Issue 1253363004: ozone gbm: whitelist 3 DRM ioctl code for native GpuMemoryBuffer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move vgem_map target into ozone.gyp Created 5 years, 2 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 | content/common/BUILD.gn » ('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 585 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 FILE support by default. 600 # Enable FILE support by default.
601 'disable_file_support%': 0, 601 'disable_file_support%': 0,
602 602
603 # Enable FTP support by default. 603 # Enable FTP support by default.
604 'disable_ftp_support%': 0, 604 'disable_ftp_support%': 0,
605 605
606 # This enables memory-mapped access to accelerated graphics buffers via
607 # the VGEM ("virtual GEM") driver. This is currently only available on
608 # Chrome OS kernels and affects code in the GBM ozone platform.
609 # TODO(dshwang): remove this flag when all gbm hardware supports vgem map.
610 # crbug.com/519587
611 'use_vgem_map%': 0,
dshwang 2015/10/19 14:48:42 it's used in both ui/ozone/ and content/
612
606 # Use of precompiled headers on Windows. 613 # Use of precompiled headers on Windows.
607 # 614 #
608 # This variable may be explicitly set to 1 (enabled) or 0 615 # This variable may be explicitly set to 1 (enabled) or 0
609 # (disabled) in ~/.gyp/include.gypi or via the GYP command line. 616 # (disabled) in ~/.gyp/include.gypi or via the GYP command line.
610 # This setting will override the default. 617 # This setting will override the default.
611 # 618 #
612 # See 619 # See
613 # http://code.google.com/p/chromium/wiki/WindowsPrecompiledHeaders 620 # http://code.google.com/p/chromium/wiki/WindowsPrecompiledHeaders
614 # for details. 621 # for details.
615 'chromium_win_pch%': 0, 622 'chromium_win_pch%': 0,
(...skipping 599 matching lines...) Expand 10 before | Expand all | Expand 10 after
1215 'enable_basic_printing%': '<(enable_basic_printing)', 1222 'enable_basic_printing%': '<(enable_basic_printing)',
1216 'enable_print_preview%': '<(enable_print_preview)', 1223 'enable_print_preview%': '<(enable_print_preview)',
1217 'enable_spellcheck%': '<(enable_spellcheck)', 1224 'enable_spellcheck%': '<(enable_spellcheck)',
1218 'use_browser_spellchecker%': '<(use_browser_spellchecker)', 1225 'use_browser_spellchecker%': '<(use_browser_spellchecker)',
1219 'enable_google_now%': '<(enable_google_now)', 1226 'enable_google_now%': '<(enable_google_now)',
1220 'cld_version%': '<(cld_version)', 1227 'cld_version%': '<(cld_version)',
1221 'cld2_table_size%': '<(cld2_table_size)', 1228 'cld2_table_size%': '<(cld2_table_size)',
1222 'enable_captive_portal_detection%': '<(enable_captive_portal_detection)', 1229 'enable_captive_portal_detection%': '<(enable_captive_portal_detection)',
1223 'disable_file_support%': '<(disable_file_support)', 1230 'disable_file_support%': '<(disable_file_support)',
1224 'disable_ftp_support%': '<(disable_ftp_support)', 1231 'disable_ftp_support%': '<(disable_ftp_support)',
1232 'use_vgem_map%': '<(use_vgem_map)',
1225 'enable_task_manager%': '<(enable_task_manager)', 1233 'enable_task_manager%': '<(enable_task_manager)',
1226 'sas_dll_path%': '<(sas_dll_path)', 1234 'sas_dll_path%': '<(sas_dll_path)',
1227 'wix_path%': '<(wix_path)', 1235 'wix_path%': '<(wix_path)',
1228 'use_libjpeg_turbo%': '<(use_libjpeg_turbo)', 1236 'use_libjpeg_turbo%': '<(use_libjpeg_turbo)',
1229 'use_system_libjpeg%': '<(use_system_libjpeg)', 1237 'use_system_libjpeg%': '<(use_system_libjpeg)',
1230 'android_channel%': '<(android_channel)', 1238 'android_channel%': '<(android_channel)',
1231 'icu_use_data_file_flag%': '<(icu_use_data_file_flag)', 1239 'icu_use_data_file_flag%': '<(icu_use_data_file_flag)',
1232 'gyp_managed_install%': 0, 1240 'gyp_managed_install%': 0,
1233 'create_standalone_apk%': 1, 1241 'create_standalone_apk%': 1,
1234 'enable_app_list%': '<(enable_app_list)', 1242 'enable_app_list%': '<(enable_app_list)',
(...skipping 5062 matching lines...) Expand 10 before | Expand all | Expand 10 after
6297 # settings in target dicts. SYMROOT is a special case, because many other 6305 # settings in target dicts. SYMROOT is a special case, because many other
6298 # Xcode variables depend on it, including variables such as 6306 # Xcode variables depend on it, including variables such as
6299 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6307 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6300 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6308 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6301 # files to appear (when present) in the UI as actual files and not red 6309 # files to appear (when present) in the UI as actual files and not red
6302 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6310 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6303 # and therefore SYMROOT, needs to be set at the project level. 6311 # and therefore SYMROOT, needs to be set at the project level.
6304 'SYMROOT': '<(DEPTH)/xcodebuild', 6312 'SYMROOT': '<(DEPTH)/xcodebuild',
6305 }, 6313 },
6306 } 6314 }
OLDNEW
« no previous file with comments | « no previous file | content/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698