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

Side by Side Diff: ui/ui.gyp

Issue 10825053: Use DwmGetCompositionTimingInfo to get vsync info on Windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix whitespace Created 8 years, 4 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 'ui_resources.gypi', 10 'ui_resources.gypi',
(...skipping 603 matching lines...) Expand 10 before | Expand all | Expand 10 after
614 ], 614 ],
615 'include_dirs': [ 615 'include_dirs': [
616 '../', 616 '../',
617 '../third_party/wtl/include', 617 '../third_party/wtl/include',
618 ], 618 ],
619 'msvs_settings': { 619 'msvs_settings': {
620 'VCLinkerTool': { 620 'VCLinkerTool': {
621 'DelayLoadDLLs': [ 621 'DelayLoadDLLs': [
622 'd2d1.dll', 622 'd2d1.dll',
623 'd3d10_1.dll', 623 'd3d10_1.dll',
624 'dwmapi.dll',
624 ], 625 ],
625 'AdditionalDependencies': [ 626 'AdditionalDependencies': [
626 'd2d1.lib', 627 'd2d1.lib',
627 'd3d10_1.lib', 628 'd3d10_1.lib',
629 'dwmapi.lib',
628 ], 630 ],
629 }, 631 },
630 }, 632 },
631 'link_settings': { 633 'link_settings': {
632 'libraries': [ 634 'libraries': [
633 '-limm32.lib', 635 '-limm32.lib',
634 '-ld2d1.lib', 636 '-ld2d1.lib',
637 '-ldwmapi.lib',
635 '-loleacc.lib', 638 '-loleacc.lib',
636 ], 639 ],
637 }, 640 },
638 },{ # OS!="win" 641 },{ # OS!="win"
639 'conditions': [ 642 'conditions': [
640 ['use_aura==0', { 643 ['use_aura==0', {
641 'sources!': [ 644 'sources!': [
642 'base/view_prop.cc', 645 'base/view_prop.cc',
643 'base/view_prop.h', 646 'base/view_prop.h',
644 ], 647 ],
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
758 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \ 761 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \
759 'os.chmod(\'<(ui_copy_dest)\', 0700)' 762 'os.chmod(\'<(ui_copy_dest)\', 0700)'
760 ] 763 ]
761 } 764 }
762 ], 765 ],
763 }, 766 },
764 ], 767 ],
765 }], 768 }],
766 ], 769 ],
767 } 770 }
OLDNEW
« ui/surface/accelerated_surface_win.cc ('K') | « ui/surface/accelerated_surface_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698