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

Side by Side Diff: content/content_browser.gypi

Issue 8370019: Change the delay loading of user32.dll to content_browser (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 2 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
« no previous file with comments | « chrome/chrome_dll.gypi ('k') | 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 },
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
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
OLDNEW
« no previous file with comments | « chrome/chrome_dll.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698