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

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

Issue 203071: Linux: add support for SELinux. (Closed)
Patch Set: Created 11 years, 3 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
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'includes': [ 7 'includes': [
8 '../common.gypi', 8 '../common.gypi',
9 ], 9 ],
10 'conditions': [ 10 'conditions': [
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 }, 128 },
129 'link_settings': { 129 'link_settings': {
130 'ldflags': [ 130 'ldflags': [
131 '<!@(<(pkg-config) --libs-only-L --libs-only-other x11)', 131 '<!@(<(pkg-config) --libs-only-L --libs-only-other x11)',
132 ], 132 ],
133 'libraries': [ 133 'libraries': [
134 '<!@(<(pkg-config) --libs-only-l x11)', 134 '<!@(<(pkg-config) --libs-only-l x11)',
135 ], 135 ],
136 }, 136 },
137 }, 137 },
138 {
139 'target_name': 'selinux',
140 'type': 'settings',
141 'link_settings': {
142 'libraries': [
143 '-lselinux',
144 ],
145 },
146 },
138 # TODO(evanm): temporarily disabled while we figure out whether to depend 147 # TODO(evanm): temporarily disabled while we figure out whether to depend
139 # on gnome-keyring etc. 148 # on gnome-keyring etc.
140 # http://code.google.com/p/chromium/issues/detail?id=12351 149 # http://code.google.com/p/chromium/issues/detail?id=12351
141 # { 150 # {
142 # 'target_name': 'gnome-keyring', 151 # 'target_name': 'gnome-keyring',
143 # 'type': 'settings', 152 # 'type': 'settings',
144 # 'direct_dependent_settings': { 153 # 'direct_dependent_settings': {
145 # 'cflags': [ 154 # 'cflags': [
146 # '<!@(<(pkg-config) --cflags gnome-keyring-1)', 155 # '<!@(<(pkg-config) --cflags gnome-keyring-1)',
147 # ], 156 # ],
(...skipping 19 matching lines...) Expand all
167 # 'ldflags': [ 176 # 'ldflags': [
168 # '<!@(<(pkg-config) --libs-only-L --libs-only-other dbus-glib-1)', 177 # '<!@(<(pkg-config) --libs-only-L --libs-only-other dbus-glib-1)',
169 # ], 178 # ],
170 # 'libraries': [ 179 # 'libraries': [
171 # '<!@(<(pkg-config) --libs-only-l dbus-glib-1)', 180 # '<!@(<(pkg-config) --libs-only-l dbus-glib-1)',
172 # ], 181 # ],
173 # }, 182 # },
174 # }, 183 # },
175 ], 184 ],
176 } 185 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698