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

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: 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 ['OS=="mac"', { 252 ['OS=="mac"', {
253 'sources!': [ 253 'sources!': [
254 'common/process_watcher_posix.cc', 254 'common/process_watcher_posix.cc',
255 ], 255 ],
256 'link_settings': { 256 'link_settings': {
257 'mac_bundle_resources': [ 257 'mac_bundle_resources': [
258 'common/common.sb', 258 'common/common.sb',
259 ], 259 ],
260 }, 260 },
261 }], 261 }],
262 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { 262 ['toolkit_uses_gtk==1', {
263 'dependencies': [ 263 'dependencies': [
264 '../build/linux/system.gyp:gtk', 264 '../build/linux/system.gyp:gtk',
265 ], 265 ],
266 }], 266 }],
267 ['OS=="linux" and target_arch!="arm"', { 267 ['use_x11==1 and target_arch!="arm"', {
268 'sources': [ 268 'sources': [
269 'common/gpu/x_util.cc', 269 'common/gpu/x_util.cc',
270 'common/gpu/x_util.h', 270 'common/gpu/x_util.h',
271 ], 271 ],
272 }], 272 }],
273 ['toolkit_views==1', { 273 ['toolkit_views==1', {
274 'sources': [ 274 'sources': [
275 'common/native_web_keyboard_event_views.cc', 275 'common/native_web_keyboard_event_views.cc',
276 ], 276 ],
277 }], 277 }],
278 ['enable_gpu==1', { 278 ['enable_gpu==1', {
279 'dependencies': [ 279 'dependencies': [
280 '../gpu/gpu.gyp:command_buffer_service', 280 '../gpu/gpu.gyp:command_buffer_service',
281 ], 281 ],
282 }], 282 }],
283 ], 283 ],
284 }, 284 },
285 ], 285 ],
286 } 286 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698