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

Side by Side Diff: ui/ui_unittests.gypi

Issue 10241005: Make win_aura work without ash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 7 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'ui_test_support', 8 'target_name': 'ui_test_support',
9 'dependencies': [ 9 'dependencies': [
10 '../base/base.gyp:base', 10 '../base/base.gyp:base',
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 'base/range/range_unittest.cc', 69 'base/range/range_unittest.cc',
70 'base/range/range_mac_unittest.mm', 70 'base/range/range_mac_unittest.mm',
71 'base/range/range_win_unittest.cc', 71 'base/range/range_win_unittest.cc',
72 'base/resource/data_pack_literal.cc', 72 'base/resource/data_pack_literal.cc',
73 'base/resource/data_pack_unittest.cc', 73 'base/resource/data_pack_unittest.cc',
74 'base/resource/resource_bundle_unittest.cc', 74 'base/resource/resource_bundle_unittest.cc',
75 'base/text/bytes_formatting_unittest.cc', 75 'base/text/bytes_formatting_unittest.cc',
76 'base/test/data/resource.h', 76 'base/test/data/resource.h',
77 'base/text/text_elider_unittest.cc', 77 'base/text/text_elider_unittest.cc',
78 'base/text/utf16_indexing_unittest.cc', 78 'base/text/utf16_indexing_unittest.cc',
79 'base/view_prop_unittest.cc',
79 'gfx/blit_unittest.cc', 80 'gfx/blit_unittest.cc',
80 'gfx/canvas_unittest.cc', 81 'gfx/canvas_unittest.cc',
81 'gfx/codec/jpeg_codec_unittest.cc', 82 'gfx/codec/jpeg_codec_unittest.cc',
82 'gfx/codec/png_codec_unittest.cc', 83 'gfx/codec/png_codec_unittest.cc',
83 'gfx/color_analysis_unittest.cc', 84 'gfx/color_analysis_unittest.cc',
84 'gfx/color_utils_unittest.cc', 85 'gfx/color_utils_unittest.cc',
85 'gfx/font_list_unittest.cc', 86 'gfx/font_list_unittest.cc',
86 'gfx/font_unittest.cc', 87 'gfx/font_unittest.cc',
87 'gfx/image/image_mac_unittest.mm', 88 'gfx/image/image_mac_unittest.mm',
88 'gfx/image/image_unittest.cc', 89 'gfx/image/image_unittest.cc',
(...skipping 12 matching lines...) Expand all
101 'test/test_suite.h', 102 'test/test_suite.h',
102 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', 103 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc',
103 ], 104 ],
104 'include_dirs': [ 105 'include_dirs': [
105 '../', 106 '../',
106 ], 107 ],
107 'conditions': [ 108 'conditions': [
108 ['OS == "win"', { 109 ['OS == "win"', {
109 'sources': [ 110 'sources': [
110 'base/dragdrop/os_exchange_data_win_unittest.cc', 111 'base/dragdrop/os_exchange_data_win_unittest.cc',
111 'base/view_prop_unittest.cc',
112 # TODO(brettw) re-enable this when the dependencies on WindowImpl ar e fixed! 112 # TODO(brettw) re-enable this when the dependencies on WindowImpl ar e fixed!
113 'gfx/icon_util_unittest.cc', 113 'gfx/icon_util_unittest.cc',
114 'gfx/native_theme_win_unittest.cc', 114 'gfx/native_theme_win_unittest.cc',
115 ], 115 ],
116 'include_dirs': [ 116 'include_dirs': [
117 '../..', 117 '../..',
118 '../third_party/wtl/include', 118 '../third_party/wtl/include',
119 ], 119 ],
120 'msvs_settings': { 120 'msvs_settings': {
121 'VCLinkerTool': { 121 'VCLinkerTool': {
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 ], 178 ],
179 'dependencies': [ 179 'dependencies': [
180 '../build/linux/system.gyp:gtk', 180 '../build/linux/system.gyp:gtk',
181 ], 181 ],
182 }], 182 }],
183 ['toolkit_views==1 and OS!="mac"', { 183 ['toolkit_views==1 and OS!="mac"', {
184 'sources': [ 184 'sources': [
185 'gfx/render_text_unittest.cc', 185 'gfx/render_text_unittest.cc',
186 ], 186 ],
187 }], 187 }],
188 ['OS!="win"' or 'use_aura==0', {
189 'sources!': [
190 'base/view_prop_unittest.cc',
191 ],
192 }],
188 ['use_aura==1', { 193 ['use_aura==1', {
189 'sources!': [ 194 'sources!': [
190 'base/view_prop_unittest.cc',
191 'gfx/screen_unittest.cc', 195 'gfx/screen_unittest.cc',
192 ], 196 ],
193 }], 197 }],
194 ['use_aura==1 or toolkit_views==1', { 198 ['use_aura==1 or toolkit_views==1', {
195 'sources': [ 199 'sources': [
196 'base/gestures/velocity_calculator_unittest.cc', 200 'base/gestures/velocity_calculator_unittest.cc',
197 ], 201 ],
198 }], 202 }],
199 ], 203 ],
200 }, 204 },
201 ], 205 ],
202 } 206 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698