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

Side by Side Diff: ui/ui.gyp

Issue 11889017: some fixes and warning disables in ui/ for building on win x64 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove stupid code Created 7 years, 11 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 | « ui/gfx/text_utils.cc ('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) 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 696 matching lines...) Expand 10 before | Expand all | Expand 10 after
707 'base/touch/touch_factory.h', 707 'base/touch/touch_factory.h',
708 'gfx/pango_util.h', 708 'gfx/pango_util.h',
709 'gfx/pango_util.cc', 709 'gfx/pango_util.cc',
710 'gfx/platform_font_pango.cc', 710 'gfx/platform_font_pango.cc',
711 'gfx/platform_font_pango.h', 711 'gfx/platform_font_pango.h',
712 ], 712 ],
713 'include_dirs': [ 713 'include_dirs': [
714 '../', 714 '../',
715 '../third_party/wtl/include', 715 '../third_party/wtl/include',
716 ], 716 ],
717 # TODO(jschuh): C4267: http://crbug.com/167187 size_t -> int
718 # C4324 is structure was padded due to __declspec(align()), which is
719 # uninteresting.
720 'msvs_disabled_warnings': [ 4267, 4324 ],
717 'msvs_settings': { 721 'msvs_settings': {
718 'VCLinkerTool': { 722 'VCLinkerTool': {
719 'DelayLoadDLLs': [ 723 'DelayLoadDLLs': [
720 'd2d1.dll', 724 'd2d1.dll',
721 'd3d10_1.dll', 725 'd3d10_1.dll',
722 'dwmapi.dll', 726 'dwmapi.dll',
723 ], 727 ],
724 'AdditionalDependencies': [ 728 'AdditionalDependencies': [
725 'd2d1.lib', 729 'd2d1.lib',
726 'd3d10_1.lib', 730 'd3d10_1.lib',
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
888 }, 892 },
889 'dependencies': [ 893 'dependencies': [
890 '../base/base.gyp:base_java', 894 '../base/base.gyp:base_java',
891 ], 895 ],
892 'includes': [ '../build/java.gypi' ], 896 'includes': [ '../build/java.gypi' ],
893 }, 897 },
894 ], 898 ],
895 }], 899 }],
896 ], 900 ],
897 } 901 }
OLDNEW
« no previous file with comments | « ui/gfx/text_utils.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698