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