OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |