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 'dependencies': [ | 6 'dependencies': [ |
7 '../crypto/crypto.gyp:crypto', | 7 '../crypto/crypto.gyp:crypto', |
8 '../net/net.gyp:net', | 8 '../net/net.gyp:net', |
9 '../net/net.gyp:http_server', | 9 '../net/net.gyp:http_server', |
10 '../ppapi/ppapi_internal.gyp:ppapi_proxy', | 10 '../ppapi/ppapi_internal.gyp:ppapi_proxy', |
(...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
595 ], | 595 ], |
596 }], | 596 }], |
597 ['OS=="win"', { | 597 ['OS=="win"', { |
598 'dependencies': [ | 598 'dependencies': [ |
599 # For accessibility | 599 # For accessibility |
600 '../third_party/iaccessible2/iaccessible2.gyp:iaccessible2', | 600 '../third_party/iaccessible2/iaccessible2.gyp:iaccessible2', |
601 '../third_party/isimpledom/isimpledom.gyp:isimpledom', | 601 '../third_party/isimpledom/isimpledom.gyp:isimpledom', |
602 ], | 602 ], |
603 'link_settings': { | 603 'link_settings': { |
604 'libraries': [ | 604 'libraries': [ |
605 » '-lcomctl32.lib', | 605 '-lcomctl32.lib', |
606 '-llocationapi.lib', | 606 '-llocationapi.lib', |
607 '-lsensorsapi.lib', | 607 '-lsensorsapi.lib', |
608 ], | 608 ], |
609 }, | 609 }, |
| 610 'msvs_settings': { |
| 611 'VCLinkerTool': { |
| 612 'DelayLoadDLLs': [ |
| 613 'user32.dll', |
| 614 ], |
| 615 }, |
| 616 }, |
610 'sources!': [ | 617 'sources!': [ |
611 'browser/power_save_blocker_stub.cc', | 618 'browser/power_save_blocker_stub.cc', |
612 ], | 619 ], |
613 }], | 620 }], |
614 ['toolkit_uses_gtk == 1', { | 621 ['toolkit_uses_gtk == 1', { |
615 'dependencies': [ | 622 'dependencies': [ |
616 '../build/linux/system.gyp:dbus', | 623 '../build/linux/system.gyp:dbus', |
617 # For FcLangSetAdd call in render_sandbox_host_linux.cc | 624 # For FcLangSetAdd call in render_sandbox_host_linux.cc |
618 '../build/linux/system.gyp:fontconfig', | 625 '../build/linux/system.gyp:fontconfig', |
619 '../build/linux/system.gyp:gtk', | 626 '../build/linux/system.gyp:gtk', |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
717 ], | 724 ], |
718 }, { | 725 }, { |
719 'sources/': [ | 726 'sources/': [ |
720 ['exclude', '^browser/renderer_host/accelerated_surface_container_linux.
cc'], | 727 ['exclude', '^browser/renderer_host/accelerated_surface_container_linux.
cc'], |
721 ['exclude', '^browser/renderer_host/accelerated_surface_container_linux.
h'], | 728 ['exclude', '^browser/renderer_host/accelerated_surface_container_linux.
h'], |
722 ], | 729 ], |
723 }], | 730 }], |
724 ], | 731 ], |
725 } | 732 } |
726 | 733 |
OLD | NEW |