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

Side by Side Diff: content/content_browser.gypi

Issue 8351017: Another crack at delay-loading user32.dll (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 1 month 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 '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
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
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
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698