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

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

Issue 14141006: [components] Switch {RefCounted}ProfileKeyedService to use BrowserContext (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'conditions': [ 7 'conditions': [
8 ['sysroot!=""', { 8 ['sysroot!=""', {
9 'pkg-config': './pkg-config-wrapper "<(sysroot)" "<(target_arch)"', 9 'pkg-config': './pkg-config-wrapper "<(sysroot)" "<(target_arch)"',
10 }, { 10 }, {
(...skipping 25 matching lines...) Expand all
36 'target_name': 'gtk', 36 'target_name': 'gtk',
37 'type': 'none', 37 'type': 'none',
38 'toolsets': ['host', 'target'], 38 'toolsets': ['host', 'target'],
39 'variables': { 39 'variables': {
40 # gtk requires gmodule, but it does not list it as a dependency 40 # gtk requires gmodule, but it does not list it as a dependency
41 # in some misconfigured systems. 41 # in some misconfigured systems.
42 'gtk_packages': 'gmodule-2.0 gtk+-2.0 gthread-2.0', 42 'gtk_packages': 'gmodule-2.0 gtk+-2.0 gthread-2.0',
43 }, 43 },
44 'conditions': [ 44 'conditions': [
45 ['_toolset=="target"', { 45 ['_toolset=="target"', {
46 'direct_dependent_settings': { 46 'all_dependent_settings': {
Paweł Hajdan Jr. 2013/04/18 18:33:00 Suggestions welcome how to do this better. clipboa
47 'cflags': [ 47 'cflags': [
48 '<!@(<(pkg-config) --cflags <(gtk_packages))', 48 '<!@(<(pkg-config) --cflags <(gtk_packages))',
49 ], 49 ],
50 }, 50 },
51 'link_settings': { 51 'link_settings': {
52 'ldflags': [ 52 'ldflags': [
53 '<!@(<(pkg-config) --libs-only-L --libs-only-other <(gtk_packa ges))', 53 '<!@(<(pkg-config) --libs-only-L --libs-only-other <(gtk_packa ges))',
54 ], 54 ],
55 'libraries': [ 55 'libraries': [
56 '<!@(<(pkg-config) --libs-only-l <(gtk_packages))', 56 '<!@(<(pkg-config) --libs-only-l <(gtk_packages))',
57 ], 57 ],
58 }, 58 },
59 }, { 59 }, {
60 'direct_dependent_settings': { 60 'all_dependent_settings': {
61 'cflags': [ 61 'cflags': [
62 '<!@(pkg-config --cflags <(gtk_packages))', 62 '<!@(pkg-config --cflags <(gtk_packages))',
63 ], 63 ],
64 }, 64 },
65 'link_settings': { 65 'link_settings': {
66 'ldflags': [ 66 'ldflags': [
67 '<!@(pkg-config --libs-only-L --libs-only-other <(gtk_packages ))', 67 '<!@(pkg-config --libs-only-L --libs-only-other <(gtk_packages ))',
68 ], 68 ],
69 'libraries': [ 69 'libraries': [
70 '<!@(pkg-config --libs-only-l <(gtk_packages))', 70 '<!@(pkg-config --libs-only-l <(gtk_packages))',
(...skipping 746 matching lines...) Expand 10 before | Expand all | Expand 10 after
817 ], 817 ],
818 'libraries': [ 818 'libraries': [
819 '<!@(<(pkg-config) --libs-only-l libudev)', 819 '<!@(<(pkg-config) --libs-only-l libudev)',
820 ], 820 ],
821 }, 821 },
822 }], 822 }],
823 ], 823 ],
824 }, 824 },
825 ], 825 ],
826 } 826 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698