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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 ], | 95 ], |
96 }, | 96 }, |
97 }, | 97 }, |
98 'link_settings': { | 98 'link_settings': { |
99 'libraries': [ | 99 'libraries': [ |
100 '-limm32.lib', | 100 '-limm32.lib', |
101 '-loleacc.lib', | 101 '-loleacc.lib', |
102 ], | 102 ], |
103 }, | 103 }, |
104 }], | 104 }], |
| 105 ['OS != "mac"', { |
| 106 'sources': [ |
| 107 'gfx/transform_unittest.cc', |
| 108 ], |
| 109 }], |
105 ['toolkit_uses_gtk == 1', { | 110 ['toolkit_uses_gtk == 1', { |
106 'sources': [ | 111 'sources': [ |
107 'base/dragdrop/gtk_dnd_util_unittest.cc', | 112 'base/dragdrop/gtk_dnd_util_unittest.cc', |
108 ], | 113 ], |
109 'dependencies': [ | 114 'dependencies': [ |
110 '../build/linux/system.gyp:gtk', | 115 '../build/linux/system.gyp:gtk', |
111 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 116 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
112 'base/strings/ui_strings.gyp:ui_unittest_strings', | 117 'base/strings/ui_strings.gyp:ui_unittest_strings', |
113 ], | 118 ], |
114 'conditions': [ | 119 'conditions': [ |
115 ['linux_use_tcmalloc==1', { | 120 ['linux_use_tcmalloc==1', { |
116 'dependencies': [ | 121 'dependencies': [ |
117 '../base/allocator/allocator.gyp:allocator', | 122 '../base/allocator/allocator.gyp:allocator', |
118 ], | 123 ], |
119 }], | 124 }], |
120 ], | 125 ], |
121 }], | 126 }], |
122 ], | 127 ], |
123 }, | 128 }, |
124 ], | 129 ], |
125 } | 130 } |
126 | 131 |
127 # Local Variables: | 132 # Local Variables: |
128 # tab-width:2 | 133 # tab-width:2 |
129 # indent-tabs-mode:nil | 134 # indent-tabs-mode:nil |
130 # End: | 135 # End: |
131 # vim: set expandtab tabstop=2 shiftwidth=2: | 136 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |