OLD | NEW |
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': 'static_library', | 9 'type': 'static_library', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
537 'browser/renderer_host/p2p/socket_dispatcher_host.cc', | 537 'browser/renderer_host/p2p/socket_dispatcher_host.cc', |
538 'browser/renderer_host/p2p/socket_dispatcher_host.h', | 538 'browser/renderer_host/p2p/socket_dispatcher_host.h', |
539 ], | 539 ], |
540 }], | 540 }], |
541 ['OS=="win"', { | 541 ['OS=="win"', { |
542 'dependencies': [ | 542 'dependencies': [ |
543 # For accessibility | 543 # For accessibility |
544 '../third_party/iaccessible2/iaccessible2.gyp:iaccessible2', | 544 '../third_party/iaccessible2/iaccessible2.gyp:iaccessible2', |
545 '../third_party/isimpledom/isimpledom.gyp:isimpledom', | 545 '../third_party/isimpledom/isimpledom.gyp:isimpledom', |
546 ], | 546 ], |
| 547 'direct_dependent_settings': { |
| 548 'link_settings': { |
| 549 'libraries': [ |
| 550 '-llocationapi.lib', |
| 551 '-lsensorsapi.lib', |
| 552 ], |
| 553 } |
| 554 }, |
547 'sources!': [ | 555 'sources!': [ |
548 'browser/power_save_blocker_stub.cc', | 556 'browser/power_save_blocker_stub.cc', |
549 ], | 557 ], |
550 }], | 558 }], |
551 ['toolkit_uses_gtk == 1', { | 559 ['toolkit_uses_gtk == 1', { |
552 'dependencies': [ | 560 'dependencies': [ |
553 '../build/linux/system.gyp:dbus-glib', | 561 '../build/linux/system.gyp:dbus-glib', |
554 # For FcLangSetAdd call in render_sandbox_host_linux.cc | 562 # For FcLangSetAdd call in render_sandbox_host_linux.cc |
555 '../build/linux/system.gyp:fontconfig', | 563 '../build/linux/system.gyp:fontconfig', |
556 '../build/linux/system.gyp:gtk', | 564 '../build/linux/system.gyp:gtk', |
557 # For XShm* in backing_store_x.cc | 565 # For XShm* in backing_store_x.cc |
558 '../build/linux/system.gyp:x11', | 566 '../build/linux/system.gyp:x11', |
559 ], | 567 ], |
560 }], | 568 }], |
561 ['OS=="linux" and chromeos==1', { | 569 ['OS=="linux" and chromeos==1', { |
562 'sources/': [ | 570 'sources/': [ |
563 ['exclude', '^browser/geolocation/wifi_data_provider_linux.cc'], | 571 ['exclude', '^browser/geolocation/wifi_data_provider_linux.cc'], |
564 ['exclude', '^browser/geolocation/wifi_data_provider_linux.h'], | 572 ['exclude', '^browser/geolocation/wifi_data_provider_linux.h'], |
565 ] | 573 ] |
566 }], | 574 }], |
| 575 ['OS=="linux" and toolkit_views==1',{ |
| 576 'dependencies': [ |
| 577 '../views/views.gyp:views', |
| 578 ], |
| 579 }], |
567 ['OS=="mac"', { | 580 ['OS=="mac"', { |
568 'sources!': [ | 581 'sources!': [ |
569 'browser/power_save_blocker_stub.cc', | 582 'browser/power_save_blocker_stub.cc', |
570 ], | 583 ], |
571 'link_settings': { | 584 'link_settings': { |
572 'mac_bundle_resources': [ | 585 'mac_bundle_resources': [ |
573 'browser/gpu.sb', | 586 'browser/gpu.sb', |
574 'browser/worker.sb', | 587 'browser/worker.sb', |
575 ], | 588 ], |
576 }, | 589 }, |
(...skipping 13 matching lines...) Expand all Loading... |
590 ['exclude', '^browser/renderer_host/gtk_im_context_wrapper.cc'], | 603 ['exclude', '^browser/renderer_host/gtk_im_context_wrapper.cc'], |
591 ['exclude', '^browser/renderer_host/gtk_im_context_wrapper.h'], | 604 ['exclude', '^browser/renderer_host/gtk_im_context_wrapper.h'], |
592 ['exclude', '^browser/renderer_host/render_widget_host_view_gtk.cc']
, | 605 ['exclude', '^browser/renderer_host/render_widget_host_view_gtk.cc']
, |
593 ['exclude', '^browser/renderer_host/render_widget_host_view_gtk.h'], | 606 ['exclude', '^browser/renderer_host/render_widget_host_view_gtk.h'], |
594 ], | 607 ], |
595 }], | 608 }], |
596 ], | 609 ], |
597 }, | 610 }, |
598 ], | 611 ], |
599 } | 612 } |
OLD | NEW |