OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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_unittests', | 8 'target_name': 'ui_unittests', |
9 'type': 'executable', | 9 'type': 'executable', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 29 matching lines...) Expand all Loading... |
40 'gfx/codec/jpeg_codec_unittest.cc', | 40 'gfx/codec/jpeg_codec_unittest.cc', |
41 'gfx/codec/png_codec_unittest.cc', | 41 'gfx/codec/png_codec_unittest.cc', |
42 'gfx/color_analysis_unittest.cc', | 42 'gfx/color_analysis_unittest.cc', |
43 'gfx/color_utils_unittest.cc', | 43 'gfx/color_utils_unittest.cc', |
44 'gfx/font_unittest.cc', | 44 'gfx/font_unittest.cc', |
45 'gfx/image/image_mac_unittest.mm', | 45 'gfx/image/image_mac_unittest.mm', |
46 'gfx/image/image_unittest.cc', | 46 'gfx/image/image_unittest.cc', |
47 'gfx/image/image_unittest_util.h', | 47 'gfx/image/image_unittest_util.h', |
48 'gfx/image/image_unittest_util.cc', | 48 'gfx/image/image_unittest_util.cc', |
49 'gfx/insets_unittest.cc', | 49 'gfx/insets_unittest.cc', |
50 'gfx/interpolated_transform_unittest.cc', | |
51 'gfx/rect_unittest.cc', | 50 'gfx/rect_unittest.cc', |
52 'gfx/run_all_unittests.cc', | 51 'gfx/run_all_unittests.cc', |
53 'gfx/skbitmap_operations_unittest.cc', | 52 'gfx/skbitmap_operations_unittest.cc', |
54 'gfx/skia_util_unittest.cc', | 53 'gfx/skia_util_unittest.cc', |
55 'gfx/test_suite.cc', | 54 'gfx/test_suite.cc', |
56 'gfx/test_suite.h', | 55 'gfx/test_suite.h', |
57 'views/rendering/border_unittest.cc', | 56 'views/rendering/border_unittest.cc', |
58 'views/view_unittest.cc', | 57 'views/view_unittest.cc', |
59 'views/widget/native_widget_win_unittest.cc', | 58 'views/widget/native_widget_win_unittest.cc', |
60 'views/widget/root_view_unittest.cc', | 59 'views/widget/root_view_unittest.cc', |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 ], | 96 ], |
98 }, | 97 }, |
99 }, | 98 }, |
100 'link_settings': { | 99 'link_settings': { |
101 'libraries': [ | 100 'libraries': [ |
102 '-limm32.lib', | 101 '-limm32.lib', |
103 '-loleacc.lib', | 102 '-loleacc.lib', |
104 ], | 103 ], |
105 }, | 104 }, |
106 }], | 105 }], |
| 106 ['OS != "mac"', { |
| 107 'sources': [ |
| 108 'gfx/transform_unittest.cc', |
| 109 'gfx/interpolated_transform_unittest.cc', |
| 110 ], |
| 111 }], |
107 ['toolkit_uses_gtk == 1', { | 112 ['toolkit_uses_gtk == 1', { |
108 'sources': [ | 113 'sources': [ |
109 'base/dragdrop/gtk_dnd_util_unittest.cc', | 114 'base/dragdrop/gtk_dnd_util_unittest.cc', |
110 ], | 115 ], |
111 'dependencies': [ | 116 'dependencies': [ |
112 '../build/linux/system.gyp:gtk', | 117 '../build/linux/system.gyp:gtk', |
113 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 118 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
114 'base/strings/ui_strings.gyp:ui_unittest_strings', | 119 'base/strings/ui_strings.gyp:ui_unittest_strings', |
115 ], | 120 ], |
116 'conditions': [ | 121 'conditions': [ |
117 ['linux_use_tcmalloc==1', { | 122 ['linux_use_tcmalloc==1', { |
118 'dependencies': [ | 123 'dependencies': [ |
119 '../base/allocator/allocator.gyp:allocator', | 124 '../base/allocator/allocator.gyp:allocator', |
120 ], | 125 ], |
121 }], | 126 }], |
122 ], | 127 ], |
123 }], | 128 }], |
124 ], | 129 ], |
125 }, | 130 }, |
126 ], | 131 ], |
127 } | 132 } |
128 | 133 |
129 # Local Variables: | 134 # Local Variables: |
130 # tab-width:2 | 135 # tab-width:2 |
131 # indent-tabs-mode:nil | 136 # indent-tabs-mode:nil |
132 # End: | 137 # End: |
133 # vim: set expandtab tabstop=2 shiftwidth=2: | 138 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |