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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'gtk', | 8 'target_name': 'gtk', |
9 'type': 'settings', | 9 'type': 'settings', |
10 'direct_dependent_settings': { | 10 'direct_dependent_settings': { |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 }, | 133 }, |
134 'link_settings': { | 134 'link_settings': { |
135 'ldflags': [ | 135 'ldflags': [ |
136 '<!@(pkg-config --libs-only-L --libs-only-other x11)', | 136 '<!@(pkg-config --libs-only-L --libs-only-other x11)', |
137 ], | 137 ], |
138 'libraries': [ | 138 'libraries': [ |
139 '<!@(pkg-config --libs-only-l x11)', | 139 '<!@(pkg-config --libs-only-l x11)', |
140 ], | 140 ], |
141 }, | 141 }, |
142 }, | 142 }, |
| 143 { |
| 144 'target_name': 'gnome-keyring', |
| 145 'type': 'settings', |
| 146 'direct_dependent_settings': { |
| 147 'cflags': [ |
| 148 '<!@(pkg-config --cflags gnome-keyring-1)', |
| 149 ], |
| 150 }, |
| 151 'link_settings': { |
| 152 'ldflags': [ |
| 153 '<!@(pkg-config --libs-only-L --libs-only-other gnome-keyring-1)', |
| 154 ], |
| 155 'libraries': [ |
| 156 '<!@(pkg-config --libs-only-l gnome-keyring-1)', |
| 157 ], |
| 158 }, |
| 159 }, |
| 160 { |
| 161 'target_name': 'dbus-glib', |
| 162 'type': 'settings', |
| 163 'direct_dependent_settings': { |
| 164 'cflags': [ |
| 165 '<!@(pkg-config --cflags dbus-glib-1)', |
| 166 ], |
| 167 }, |
| 168 'link_settings': { |
| 169 'ldflags': [ |
| 170 '<!@(pkg-config --libs-only-L --libs-only-other dbus-glib-1)', |
| 171 ], |
| 172 'libraries': [ |
| 173 '<!@(pkg-config --libs-only-l dbus-glib-1)', |
| 174 ], |
| 175 }, |
| 176 }, |
143 ], | 177 ], |
144 } | 178 } |
OLD | NEW |