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

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

Issue 1005293002: Re-land: Resurrect Aura Linux accessibility. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 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
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': '<(chroot_cmd) ./pkg-config-wrapper "<(sysroot)" "<(target _arch)" "<(system_libdir)"', 9 'pkg-config': '<(chroot_cmd) ./pkg-config-wrapper "<(sysroot)" "<(target _arch)" "<(system_libdir)"',
10 }, { 10 }, {
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 'udev_set_log_priority', 84 'udev_set_log_priority',
85 'udev_unref', 85 'udev_unref',
86 ], 86 ],
87 }, 87 },
88 'conditions': [ 88 'conditions': [
89 [ 'chromeos==0 and use_ozone==0', { 89 [ 'chromeos==0 and use_ozone==0', {
90 # Hide GTK and related dependencies for Chrome OS and Ozone, so they won't get 90 # Hide GTK and related dependencies for Chrome OS and Ozone, so they won't get
91 # added back to Chrome OS and Ozone. Don't try to use GTK on Chrome OS and Ozone. 91 # added back to Chrome OS and Ozone. Don't try to use GTK on Chrome OS and Ozone.
92 'targets': [ 92 'targets': [
93 { 93 {
94 'target_name': 'atk',
95 'type': 'none',
96 'conditions': [
97 ['_toolset=="target"', {
98 'direct_dependent_settings': {
99 'cflags': [
100 '<!@(<(pkg-config) --cflags atk)',
101 ],
102 'defines': [
103 'ATK_LIB_DIR="<!@(<(pkg-config) --variable=libdir atk)"',
104 ],
105 },
106 'link_settings': {
107 'ldflags': [
108 '<!@(<(pkg-config) --libs-only-L --libs-only-other atk)',
109 ],
110 'libraries': [
111 '<!@(<(pkg-config) --libs-only-l atk)',
112 ],
113 },
114 }],
115 ],
116 },
117 {
94 'target_name': 'gdk', 118 'target_name': 'gdk',
95 'type': 'none', 119 'type': 'none',
96 'conditions': [ 120 'conditions': [
97 ['_toolset=="target"', { 121 ['_toolset=="target"', {
98 'direct_dependent_settings': { 122 'direct_dependent_settings': {
99 'cflags': [ 123 'cflags': [
100 '<!@(<(pkg-config) --cflags gdk-2.0)', 124 '<!@(<(pkg-config) --cflags gdk-2.0)',
101 ], 125 ],
102 }, 126 },
103 'link_settings': { 127 'link_settings': {
(...skipping 1084 matching lines...) Expand 10 before | Expand all | Expand 10 after
1188 '-Wno-header-guard', 1212 '-Wno-header-guard',
1189 ], 1213 ],
1190 }, 1214 },
1191 }], 1215 }],
1192 ] 1216 ]
1193 }], 1217 }],
1194 ], 1218 ],
1195 }, 1219 },
1196 ], 1220 ],
1197 } 1221 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698