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

Side by Side Diff: webkit/tools/test_shell/test_shell.gyp

Issue 27362: Fixes to gyp files to get test_shell building on windows from a gyp project (... (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 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
« no previous file with comments | « webkit/default_plugin/default_plugin.gyp ('k') | webkit/webkit.gyp » ('j') | 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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 '../../../build/common.gypi', 10 '../../../build/common.gypi',
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 ], 82 ],
83 'conditions': [ 83 'conditions': [
84 ['OS!="linux"', {'sources/': [['exclude', '_gtk\\.cc$']]}], 84 ['OS!="linux"', {'sources/': [['exclude', '_gtk\\.cc$']]}],
85 ['OS!="mac"', { 85 ['OS!="mac"', {
86 'sources/': [ 86 'sources/': [
87 ['exclude', 'mac/[^/]*\\.(cc|mm?)$'], 87 ['exclude', 'mac/[^/]*\\.(cc|mm?)$'],
88 ['exclude', '_mac\\.(cc|mm?)$'], 88 ['exclude', '_mac\\.(cc|mm?)$'],
89 ] 89 ]
90 }], 90 }],
91 ['OS=="win"', { 91 ['OS=="win"', {
92 'include_dirs': [ 92 'msvs_disabled_warnings': [ 4800 ],
93 '../../../breakpad/src', 93 'link_settings': {
94 'libraries': [
95 '-lcomctl32.lib',
96 ],
97 },
98 'dependencies': [
99 '../../../breakpad/breakpad.gyp:breakpad_handler',
94 ], 100 ],
95 'msvs_disabled_warnings': [ 4800 ],
96 }, { # OS!=win 101 }, { # OS!=win
97 'sources/': [ 102 'sources/': [
98 ['exclude', '_win\\.cc$'] 103 ['exclude', '_win\\.cc$']
99 ], 104 ],
100 'sources!': [ 105 'sources!': [
101 'drag_delegate.cc', 106 'drag_delegate.cc',
102 'drop_delegate.cc', 107 'drop_delegate.cc',
103 ], 108 ],
104 }], 109 }],
105 ], 110 ],
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 'sources!': [ 190 'sources!': [
186 '../../../skia/ext/vector_canvas_unittest.cc', 191 '../../../skia/ext/vector_canvas_unittest.cc',
187 '../webcore_unit_tests/UniscribeHelper_unittest.cpp', 192 '../webcore_unit_tests/UniscribeHelper_unittest.cpp',
188 'plugin_tests.cc' 193 'plugin_tests.cc'
189 ], 194 ],
190 }], 195 }],
191 ], 196 ],
192 }, 197 },
193 ], 198 ],
194 } 199 }
OLDNEW
« no previous file with comments | « webkit/default_plugin/default_plugin.gyp ('k') | webkit/webkit.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698