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

Side by Side Diff: webkit/support/webkit_support.gypi

Issue 12218070: Make views_unittests build on Win64 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 10 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 | « 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) 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 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 },{ # OS!="mac" 83 },{ # OS!="mac"
84 'copies': [{ 84 'copies': [{
85 'destination': '<(PRODUCT_DIR)/DumpRenderTree_resources', 85 'destination': '<(PRODUCT_DIR)/DumpRenderTree_resources',
86 'files': [ 86 'files': [
87 '../tools/test_shell/resources/missingImage.gif', 87 '../tools/test_shell/resources/missingImage.gif',
88 '../tools/test_shell/resources/textAreaResizeCorner.png', 88 '../tools/test_shell/resources/textAreaResizeCorner.png',
89 ], 89 ],
90 }], 90 }],
91 }], 91 }],
92 ], 92 ],
93 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
94 'msvs_disabled_warnings': [ 4267, ],
93 }, 95 },
94 96
95 { 97 {
96 'target_name': 'webkit_support_common', 98 'target_name': 'webkit_support_common',
97 'type': 'static_library', 99 'type': 'static_library',
98 'variables': { 'enable_wexit_time_destructors': 1, }, 100 'variables': { 'enable_wexit_time_destructors': 1, },
99 'dependencies': [ 101 'dependencies': [
100 '<(DEPTH)/base/base.gyp:base', 102 '<(DEPTH)/base/base.gyp:base',
101 '<(DEPTH)/crypto/crypto.gyp:crypto', 103 '<(DEPTH)/crypto/crypto.gyp:crypto',
102 '<(DEPTH)/net/net.gyp:net', 104 '<(DEPTH)/net/net.gyp:net',
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 'simple_database_system.cc', 143 'simple_database_system.cc',
142 'simple_database_system.h', 144 'simple_database_system.h',
143 ], 145 ],
144 'conditions': [ 146 'conditions': [
145 ['inside_chromium_build==0', { 147 ['inside_chromium_build==0', {
146 'dependencies': [ 148 'dependencies': [
147 'setup_third_party.gyp:third_party_headers', 149 'setup_third_party.gyp:third_party_headers',
148 ], 150 ],
149 }], 151 }],
150 ], 152 ],
153 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
154 'msvs_disabled_warnings': [ 4267, ],
151 }, 155 },
152 156
153 { 157 {
154 'target_name': 'webkit_support_gfx', 158 'target_name': 'webkit_support_gfx',
155 'type': 'static_library', 159 'type': 'static_library',
156 'variables': { 'enable_wexit_time_destructors': 1, }, 160 'variables': { 'enable_wexit_time_destructors': 1, },
157 'dependencies': [ 161 'dependencies': [
158 '<(DEPTH)/third_party/libpng/libpng.gyp:libpng', 162 '<(DEPTH)/third_party/libpng/libpng.gyp:libpng',
159 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib', 163 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib',
160 ], 164 ],
161 'sources': [ 165 'sources': [
162 'webkit_support_gfx.h', 166 'webkit_support_gfx.h',
163 'webkit_support_gfx.cc', 167 'webkit_support_gfx.cc',
164 ], 168 ],
165 'include_dirs': [ 169 'include_dirs': [
166 '<(DEPTH)', 170 '<(DEPTH)',
167 ], 171 ],
168 'conditions': [ 172 'conditions': [
169 ['OS=="android"', { 173 ['OS=="android"', {
170 'toolsets': ['target', 'host'], 174 'toolsets': ['target', 'host'],
171 }], 175 }],
172 ], 176 ],
173 }, 177 },
174 ], 178 ],
175 } 179 }
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