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

Side by Side Diff: build/linux/system.gyp

Issue 14771026: Linux: remove unmaintained SELinux code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « build/common.gypi ('k') | chrome/chrome_common.gypi » ('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 { 5 {
6 'variables': { 6 'variables': {
7 'conditions': [ 7 'conditions': [
8 ['sysroot!=""', { 8 ['sysroot!=""', {
9 'pkg-config': './pkg-config-wrapper "<(sysroot)" "<(target_arch)"', 9 'pkg-config': './pkg-config-wrapper "<(sysroot)" "<(target_arch)"',
10 }, { 10 }, {
(...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after
616 }, 616 },
617 'link_settings': { 617 'link_settings': {
618 'libraries': [ 618 'libraries': [
619 '<!@(libgcrypt-config --libs)', 619 '<!@(libgcrypt-config --libs)',
620 ], 620 ],
621 }, 621 },
622 }], 622 }],
623 ], 623 ],
624 }, 624 },
625 { 625 {
626 'target_name': 'selinux',
627 'type': 'none',
628 'conditions': [
629 ['_toolset=="target"', {
630 'link_settings': {
631 'libraries': [
632 '-lselinux',
633 ],
634 },
635 }],
636 ],
637 },
638 {
639 'target_name': 'gnome_keyring', 626 'target_name': 'gnome_keyring',
640 'type': 'none', 627 'type': 'none',
641 'conditions': [ 628 'conditions': [
642 ['use_gnome_keyring==1', { 629 ['use_gnome_keyring==1', {
643 'direct_dependent_settings': { 630 'direct_dependent_settings': {
644 'cflags': [ 631 'cflags': [
645 '<!@(<(pkg-config) --cflags gnome-keyring-1)', 632 '<!@(<(pkg-config) --cflags gnome-keyring-1)',
646 ], 633 ],
647 'defines': [ 634 'defines': [
648 'USE_GNOME_KEYRING', 635 'USE_GNOME_KEYRING',
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
834 ], 821 ],
835 'libraries': [ 822 'libraries': [
836 '<!@(<(pkg-config) --libs-only-l libudev)', 823 '<!@(<(pkg-config) --libs-only-l libudev)',
837 ], 824 ],
838 }, 825 },
839 }], 826 }],
840 ], 827 ],
841 }, 828 },
842 ], 829 ],
843 } 830 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | chrome/chrome_common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698