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

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

Issue 42340: Update the gyp Linux build: (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 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/linux/pkg_config_wrapper.py ('k') | chrome/chrome.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'gtk',
9 'type': 'settings',
10 'direct_dependent_settings': {
11 'cflags': [
12 '<!@(python ../build/linux/pkg_config_wrapper.py --cflags gtk+-2.0)',
13 ],
14 },
15 'link_settings': {
16 'libraries': [
17 '<!@(python ../build/linux/pkg_config_wrapper.py --libs gtk+-2.0)',
18 ],
19 },
20 },
21 {
22 'target_name': 'nss',
23 'type': 'settings',
24 'direct_dependent_settings': {
25 'cflags': [
26 '<!@(python ../build/linux/pkg_config_wrapper.py --cflags nss)',
27 ],
28 },
29 'link_settings': {
30 'libraries': [
31 '<!@(python ../build/linux/pkg_config_wrapper.py --libs nss)',
32 ],
33 },
34 },
35 {
36 'target_name': 'pangoft2',
37 'type': 'settings',
38 'direct_dependent_settings': {
39 'cflags': [
40 '<!@(python ../build/linux/pkg_config_wrapper.py --cflags pangoft2)',
41 ],
42 },
43 'link_settings': {
44 'libraries': [
45 '<!@(python ../build/linux/pkg_config_wrapper.py --libs pangoft2)',
46 ],
47 },
48 },
49 ],
50 }
OLDNEW
« no previous file with comments | « build/linux/pkg_config_wrapper.py ('k') | chrome/chrome.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698