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

Side by Side Diff: build/common.gypi

Issue 676613002: Cleanup: Remove unused enable_eglimage variable and #define. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix rebase Created 6 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 | build/config/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 1336 matching lines...) Expand 10 before | Expand all | Expand 10 after
1347 'linux_link_gnome_keyring%': 0, 1347 'linux_link_gnome_keyring%': 0,
1348 # Set to 1 to link against gsettings APIs instead of using dlopen(). 1348 # Set to 1 to link against gsettings APIs instead of using dlopen().
1349 'linux_link_gsettings%': 0, 1349 'linux_link_gsettings%': 0,
1350 1350
1351 # Enable use of OpenMAX DL FFT routines. 1351 # Enable use of OpenMAX DL FFT routines.
1352 'use_openmax_dl_fft%': '<(use_openmax_dl_fft)', 1352 'use_openmax_dl_fft%': '<(use_openmax_dl_fft)',
1353 1353
1354 # Enable new NPDevice API. 1354 # Enable new NPDevice API.
1355 'enable_new_npdevice_api%': 0, 1355 'enable_new_npdevice_api%': 0,
1356 1356
1357 # Enable EGLImage support in OpenMAX
1358 'enable_eglimage%': 1,
1359
1360 # .gyp files or targets should set chromium_code to 1 if they build 1357 # .gyp files or targets should set chromium_code to 1 if they build
1361 # Chromium-specific code, as opposed to external code. This variable is 1358 # Chromium-specific code, as opposed to external code. This variable is
1362 # used to control such things as the set of warnings to enable, and 1359 # used to control such things as the set of warnings to enable, and
1363 # whether warnings are treated as errors. 1360 # whether warnings are treated as errors.
1364 'chromium_code%': 0, 1361 'chromium_code%': 0,
1365 1362
1366 # Disable fatal linker warnings, similarly to how we make it possible 1363 # Disable fatal linker warnings, similarly to how we make it possible
1367 # to disable -Werror (e.g. for different toolchain versions). 1364 # to disable -Werror (e.g. for different toolchain versions).
1368 'disable_fatal_linker_warnings%': 0, 1365 'disable_fatal_linker_warnings%': 0,
1369 1366
(...skipping 1376 matching lines...) Expand 10 before | Expand all | Expand 10 after
2746 ['tracing_like_official_build!=0', { 2743 ['tracing_like_official_build!=0', {
2747 'defines': ['TRACING_IS_OFFICIAL_BUILD=1'], 2744 'defines': ['TRACING_IS_OFFICIAL_BUILD=1'],
2748 }], # tracing_like_official_build!=0 2745 }], # tracing_like_official_build!=0
2749 ['win_use_allocator_shim==0', { 2746 ['win_use_allocator_shim==0', {
2750 'conditions': [ 2747 'conditions': [
2751 ['OS=="win"', { 2748 ['OS=="win"', {
2752 'defines': ['NO_TCMALLOC'], 2749 'defines': ['NO_TCMALLOC'],
2753 }], 2750 }],
2754 ], 2751 ],
2755 }], 2752 }],
2756 ['enable_eglimage==1', {
2757 'defines': [
2758 'ENABLE_EGLIMAGE=1',
2759 ],
2760 }],
2761 ['asan==1', { 2753 ['asan==1', {
2762 'defines': [ 2754 'defines': [
2763 'ADDRESS_SANITIZER', 2755 'ADDRESS_SANITIZER',
2764 'MEMORY_TOOL_REPLACES_ALLOCATOR', 2756 'MEMORY_TOOL_REPLACES_ALLOCATOR',
2765 'MEMORY_SANITIZER_INITIAL_SIZE', 2757 'MEMORY_SANITIZER_INITIAL_SIZE',
2766 ], 2758 ],
2767 }], 2759 }],
2768 ['syzyasan==1', { 2760 ['syzyasan==1', {
2769 # SyzyAsan needs /PROFILE turned on to produce appropriate pdbs. 2761 # SyzyAsan needs /PROFILE turned on to produce appropriate pdbs.
2770 'msvs_settings': { 2762 'msvs_settings': {
(...skipping 3067 matching lines...) Expand 10 before | Expand all | Expand 10 after
5838 # settings in target dicts. SYMROOT is a special case, because many other 5830 # settings in target dicts. SYMROOT is a special case, because many other
5839 # Xcode variables depend on it, including variables such as 5831 # Xcode variables depend on it, including variables such as
5840 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5832 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5841 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5833 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5842 # files to appear (when present) in the UI as actual files and not red 5834 # files to appear (when present) in the UI as actual files and not red
5843 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5835 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5844 # and therefore SYMROOT, needs to be set at the project level. 5836 # and therefore SYMROOT, needs to be set at the project level.
5845 'SYMROOT': '<(DEPTH)/xcodebuild', 5837 'SYMROOT': '<(DEPTH)/xcodebuild',
5846 }, 5838 },
5847 } 5839 }
OLDNEW
« no previous file with comments | « no previous file | build/config/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698