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

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

Issue 113189: Add password store interface.... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 11 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 | « no previous file | chrome/browser/password_manager/password_form_manager.h » ('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) 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
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 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/password_manager/password_form_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698