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

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

Powered by Google App Engine
This is Rietveld 408576698