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

Side by Side Diff: content/content_browser.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_browser', 8 'target_name': 'content_browser',
9 'type': '<(library)', 9 'type': '<(library)',
10 'dependencies': [ 10 'dependencies': [
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 'browser/renderer_host/p2p/socket_host_tcp_server.h', 354 'browser/renderer_host/p2p/socket_host_tcp_server.h',
355 'browser/renderer_host/p2p/socket_host_udp.cc', 355 'browser/renderer_host/p2p/socket_host_udp.cc',
356 'browser/renderer_host/p2p/socket_host_udp.h', 356 'browser/renderer_host/p2p/socket_host_udp.h',
357 'browser/renderer_host/p2p/socket_dispatcher_host.cc', 357 'browser/renderer_host/p2p/socket_dispatcher_host.cc',
358 'browser/renderer_host/p2p/socket_dispatcher_host.h', 358 'browser/renderer_host/p2p/socket_dispatcher_host.h',
359 ], 359 ],
360 }], 360 }],
361 ['OS=="win"', { 361 ['OS=="win"', {
362 'msvs_guid': '639DB58D-32C2-435A-A711-65A12F62E442', 362 'msvs_guid': '639DB58D-32C2-435A-A711-65A12F62E442',
363 }], 363 }],
364 ['OS=="linux"', { 364 ['toolkit_uses_gtk==1', {
tony 2011/05/16 19:25:11 Here too: os_posix==1 and OS!="mac"
365 'dependencies': [ 365 'dependencies': [
366 '../build/linux/system.gyp:dbus-glib', 366 '../build/linux/system.gyp:dbus-glib',
367 # For FcLangSetAdd call in render_sandbox_host_linux.cc 367 # For FcLangSetAdd call in render_sandbox_host_linux.cc
368 '../build/linux/system.gyp:fontconfig', 368 '../build/linux/system.gyp:fontconfig',
369 '../build/linux/system.gyp:gtk', 369 '../build/linux/system.gyp:gtk',
370 # For XShm* in backing_store_x.cc 370 # For XShm* in backing_store_x.cc
371 '../build/linux/system.gyp:x11', 371 '../build/linux/system.gyp:x11',
372 ], 372 ],
373 }, { # OS != "linux" 373 }, { # toolkit_uses_gtk != 1
374 'sources!': [ 374 'sources!': [
375 # TODO(mattm): Cert manager stuff is really !USE_NSS. 375 # TODO(mattm): Cert manager stuff is really !USE_NSS.
376 'browser/certificate_manager_model.cc', 376 'browser/certificate_manager_model.cc',
377 'browser/certificate_manager_model.h', 377 'browser/certificate_manager_model.h',
378 ], 378 ],
379 }], 379 }],
380 ['OS=="linux" and chromeos==1', { 380 ['OS=="linux" and chromeos==1', {
381 'sources/': [ 381 'sources/': [
382 ['exclude', '^browser/geolocation/wifi_data_provider_linux.cc'], 382 ['exclude', '^browser/geolocation/wifi_data_provider_linux.cc'],
383 ['exclude', '^browser/geolocation/wifi_data_provider_linux.h'], 383 ['exclude', '^browser/geolocation/wifi_data_provider_linux.h'],
384 ] 384 ]
385 }], 385 }],
386 ['OS=="mac"', { 386 ['OS=="mac"', {
387 'link_settings': { 387 'link_settings': {
388 'mac_bundle_resources': [ 388 'mac_bundle_resources': [
389 'browser/gpu.sb', 389 'browser/gpu.sb',
390 'browser/worker.sb', 390 'browser/worker.sb',
391 ], 391 ],
392 }, 392 },
393 }], 393 }],
394 ], 394 ],
395 }, 395 },
396 ], 396 ],
397 } 397 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698