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

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

Issue 60009: ProxyConfigService for Linux.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 8 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/install-build-deps.sh ('k') | chrome/app/chrome_dll_main.cc » ('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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 }, 82 },
83 'link_settings': { 83 'link_settings': {
84 'ldflags': [ 84 'ldflags': [
85 '<!@(python pkg_config_wrapper.py --libs-only-L --libs-only-other gdk- 2.0)', 85 '<!@(python pkg_config_wrapper.py --libs-only-L --libs-only-other gdk- 2.0)',
86 ], 86 ],
87 'libraries': [ 87 'libraries': [
88 '<!@(python pkg_config_wrapper.py --libs-only-l gdk-2.0)', 88 '<!@(python pkg_config_wrapper.py --libs-only-l gdk-2.0)',
89 ], 89 ],
90 }, 90 },
91 }, 91 },
92 {
93 'target_name': 'gconf',
94 'type': 'settings',
95 'direct_dependent_settings': {
96 'cflags': [
97 '<!@(python pkg_config_wrapper.py --cflags gconf-2.0)',
98 ],
99 },
100 'link_settings': {
101 'ldflags': [
102 '<!@(python pkg_config_wrapper.py --libs-only-L --libs-only-other gcon f-2.0)',
103 ],
104 'libraries': [
105 '<!@(python pkg_config_wrapper.py --libs-only-l gconf-2.0)',
106 ],
107 },
108 },
92 ], 109 ],
93 } 110 }
OLDNEW
« no previous file with comments | « build/install-build-deps.sh ('k') | chrome/app/chrome_dll_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698