| 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 # TODO(rsesek): Remove this target once ui_unittests is run on the | 8 # TODO(rsesek): Remove this target once ui_unittests is run on the |
| 9 # waterfall instead of gfx_unittests. | 9 # waterfall instead of gfx_unittests. |
| 10 'target_name': 'gfx_unittests', | 10 'target_name': 'gfx_unittests', |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 'gfx/scrollbar_size.cc', | 110 'gfx/scrollbar_size.cc', |
| 111 'gfx/scrollbar_size.h', | 111 'gfx/scrollbar_size.h', |
| 112 'gfx/size.cc', | 112 'gfx/size.cc', |
| 113 'gfx/size.h', | 113 'gfx/size.h', |
| 114 'gfx/skbitmap_operations.cc', | 114 'gfx/skbitmap_operations.cc', |
| 115 'gfx/skbitmap_operations.h', | 115 'gfx/skbitmap_operations.h', |
| 116 'gfx/skia_util.cc', | 116 'gfx/skia_util.cc', |
| 117 'gfx/skia_util.h', | 117 'gfx/skia_util.h', |
| 118 'gfx/skia_utils_gtk.cc', | 118 'gfx/skia_utils_gtk.cc', |
| 119 'gfx/skia_utils_gtk.h', | 119 'gfx/skia_utils_gtk.h', |
| 120 'gfx/transform.h', | |
| 121 'gfx/transform.cc', | |
| 122 ], | 120 ], |
| 123 'conditions': [ | 121 'conditions': [ |
| 122 ['OS!="mac"', { |
| 123 'sources': [ |
| 124 'gfx/transform.h', |
| 125 'gfx/transform.cc', |
| 126 ], |
| 127 }], |
| 124 ['OS=="win"', { | 128 ['OS=="win"', { |
| 125 'sources': [ | 129 'sources': [ |
| 126 'gfx/canvas_direct2d.cc', | 130 'gfx/canvas_direct2d.cc', |
| 127 'gfx/canvas_direct2d.h', | 131 'gfx/canvas_direct2d.h', |
| 128 'gfx/gdi_util.cc', | 132 'gfx/gdi_util.cc', |
| 129 'gfx/gdi_util.h', | 133 'gfx/gdi_util.h', |
| 130 'gfx/icon_util.cc', | 134 'gfx/icon_util.cc', |
| 131 'gfx/icon_util.h', | 135 'gfx/icon_util.h', |
| 132 'gfx/native_theme_win.cc', | 136 'gfx/native_theme_win.cc', |
| 133 'gfx/native_theme_win.h', | 137 'gfx/native_theme_win.h', |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 }, | 189 }, |
| 186 | 190 |
| 187 ], | 191 ], |
| 188 } | 192 } |
| 189 | 193 |
| 190 # Local Variables: | 194 # Local Variables: |
| 191 # tab-width:2 | 195 # tab-width:2 |
| 192 # indent-tabs-mode:nil | 196 # indent-tabs-mode:nil |
| 193 # End: | 197 # End: |
| 194 # vim: set expandtab tabstop=2 shiftwidth=2: | 198 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |