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 'msvs_settings': { |
610 'msvs_settings': { | 610 'VCLinkerTool': { |
611 'VCLinkerTool': { | 611 'DelayLoadDLLs': [ |
612 'DelayLoadDLLs': [ | 612 'user32.dll', |
613 'user32.dll', | 613 ], |
614 ], | 614 }, |
615 }, | 615 }, |
616 }, | 616 }, |
617 'sources!': [ | 617 'sources!': [ |
618 'browser/power_save_blocker_stub.cc', | 618 'browser/power_save_blocker_stub.cc', |
619 ], | 619 ], |
620 }], | 620 }], |
621 ['toolkit_uses_gtk == 1', { | 621 ['toolkit_uses_gtk == 1', { |
622 'dependencies': [ | 622 'dependencies': [ |
623 '../build/linux/system.gyp:dbus', | 623 '../build/linux/system.gyp:dbus', |
624 # For FcLangSetAdd call in render_sandbox_host_linux.cc | 624 # For FcLangSetAdd call in render_sandbox_host_linux.cc |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
724 ], | 724 ], |
725 }, { | 725 }, { |
726 'sources/': [ | 726 'sources/': [ |
727 ['exclude', '^browser/renderer_host/accelerated_surface_container_linux.
cc'], | 727 ['exclude', '^browser/renderer_host/accelerated_surface_container_linux.
cc'], |
728 ['exclude', '^browser/renderer_host/accelerated_surface_container_linux.
h'], | 728 ['exclude', '^browser/renderer_host/accelerated_surface_container_linux.
h'], |
729 ], | 729 ], |
730 }], | 730 }], |
731 ], | 731 ], |
732 } | 732 } |
733 | 733 |
OLD | NEW |