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

Side by Side Diff: content/content_common.gypi

Issue 7011032: Make the gyp files more cross-platform across the Unices (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: updated to trunk and added spaces, collapsed one check Created 9 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
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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': 'content_common', 8 'target_name': 'content_common',
9 'type': '<(library)', 9 'type': '<(library)',
10 'dependencies': [ 10 'dependencies': [
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 ['OS=="mac"', { 259 ['OS=="mac"', {
260 'sources!': [ 260 'sources!': [
261 'common/process_watcher_posix.cc', 261 'common/process_watcher_posix.cc',
262 ], 262 ],
263 'link_settings': { 263 'link_settings': {
264 'mac_bundle_resources': [ 264 'mac_bundle_resources': [
265 'common/common.sb', 265 'common/common.sb',
266 ], 266 ],
267 }, 267 },
268 }], 268 }],
269 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { 269 ['toolkit_uses_gtk == 1', {
270 'dependencies': [ 270 'dependencies': [
271 '../build/linux/system.gyp:gtk', 271 '../build/linux/system.gyp:gtk',
272 ], 272 ],
273 }], 273 }],
274 ['OS=="linux" and target_arch!="arm"', { 274 ['use_x11 == 1 and target_arch != "arm"', {
275 'sources': [ 275 'sources': [
276 'common/gpu/x_util.cc', 276 'common/gpu/x_util.cc',
277 'common/gpu/x_util.h', 277 'common/gpu/x_util.h',
278 ], 278 ],
279 }], 279 }],
280 ['toolkit_views==1', { 280 ['toolkit_views==1', {
281 'sources': [ 281 'sources': [
282 'common/native_web_keyboard_event_views.cc', 282 'common/native_web_keyboard_event_views.cc',
283 ], 283 ],
284 }], 284 }],
285 ['enable_gpu==1', { 285 ['enable_gpu==1', {
286 'dependencies': [ 286 'dependencies': [
287 '../gpu/gpu.gyp:command_buffer_service', 287 '../gpu/gpu.gyp:command_buffer_service',
288 ], 288 ],
289 }], 289 }],
290 ], 290 ],
291 }, 291 },
292 ], 292 ],
293 } 293 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698