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

Side by Side Diff: build/common.gypi

Issue 11343015: Linux: add option to link libpci directly instead of using dlopen. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | build/install-build-deps.sh » ('j') | content/gpu/gpu_info_collector_linux.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 792 matching lines...) Expand 10 before | Expand all | Expand 10 after
803 'linux_use_heapchecker%': 0, 803 'linux_use_heapchecker%': 0,
804 804
805 # Disable shadow stack keeping used by heapcheck to unwind the stacks 805 # Disable shadow stack keeping used by heapcheck to unwind the stacks
806 # better. 806 # better.
807 'linux_keep_shadow_stacks%': 0, 807 'linux_keep_shadow_stacks%': 0,
808 808
809 # Set to 1 to link against libgnome-keyring instead of using dlopen(). 809 # Set to 1 to link against libgnome-keyring instead of using dlopen().
810 'linux_link_gnome_keyring%': 0, 810 'linux_link_gnome_keyring%': 0,
811 # Set to 1 to link against gsettings APIs instead of using dlopen(). 811 # Set to 1 to link against gsettings APIs instead of using dlopen().
812 'linux_link_gsettings%': 0, 812 'linux_link_gsettings%': 0,
813 # Set to 1 to link against libpci instead of using dlopen().
814 'linux_link_libpci%': 0,
813 815
814 # Set Thumb compilation flags. 816 # Set Thumb compilation flags.
815 'arm_thumb%': 0, 817 'arm_thumb%': 0,
816 818
817 # Set ARM fpu compilation flags (only meaningful if armv7==1 and 819 # Set ARM fpu compilation flags (only meaningful if armv7==1 and
818 # arm_neon==0). 820 # arm_neon==0).
819 'arm_fpu%': 'vfpv3', 821 'arm_fpu%': 'vfpv3',
820 822
821 # Set ARM float abi compilation flag. 823 # Set ARM float abi compilation flag.
822 'arm_float_abi%': 'softfp', 824 'arm_float_abi%': 'softfp',
(...skipping 2854 matching lines...) Expand 10 before | Expand all | Expand 10 after
3677 # settings in target dicts. SYMROOT is a special case, because many other 3679 # settings in target dicts. SYMROOT is a special case, because many other
3678 # Xcode variables depend on it, including variables such as 3680 # Xcode variables depend on it, including variables such as
3679 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 3681 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
3680 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 3682 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
3681 # files to appear (when present) in the UI as actual files and not red 3683 # files to appear (when present) in the UI as actual files and not red
3682 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 3684 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
3683 # and therefore SYMROOT, needs to be set at the project level. 3685 # and therefore SYMROOT, needs to be set at the project level.
3684 'SYMROOT': '<(DEPTH)/xcodebuild', 3686 'SYMROOT': '<(DEPTH)/xcodebuild',
3685 }, 3687 },
3686 } 3688 }
OLDNEW
« no previous file with comments | « no previous file | build/install-build-deps.sh » ('j') | content/gpu/gpu_info_collector_linux.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698