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

Side by Side Diff: ui/ui_gfx.gypi

Issue 7044062: Use SkMatrix44 for the underlying implementation of ui::Transform (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Layer animator updates Created 9 years, 6 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) 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 'gfx/scrollbar_size.cc', 108 'gfx/scrollbar_size.cc',
109 'gfx/scrollbar_size.h', 109 'gfx/scrollbar_size.h',
110 'gfx/size.cc', 110 'gfx/size.cc',
111 'gfx/size.h', 111 'gfx/size.h',
112 'gfx/skbitmap_operations.cc', 112 'gfx/skbitmap_operations.cc',
113 'gfx/skbitmap_operations.h', 113 'gfx/skbitmap_operations.h',
114 'gfx/skia_util.cc', 114 'gfx/skia_util.cc',
115 'gfx/skia_util.h', 115 'gfx/skia_util.h',
116 'gfx/skia_utils_gtk.cc', 116 'gfx/skia_utils_gtk.cc',
117 'gfx/skia_utils_gtk.h', 117 'gfx/skia_utils_gtk.h',
118 'gfx/transform.h',
119 'gfx/transform.cc',
120 ], 118 ],
121 'conditions': [ 119 'conditions': [
120 ['OS!="mac"', {
121 'sources': [
122 'gfx/transform.h',
123 'gfx/transform.cc',
124 ],
125 }],
122 ['OS=="win"', { 126 ['OS=="win"', {
123 'sources': [ 127 'sources': [
124 'gfx/canvas_direct2d.cc', 128 'gfx/canvas_direct2d.cc',
125 'gfx/canvas_direct2d.h', 129 'gfx/canvas_direct2d.h',
126 'gfx/gdi_util.cc', 130 'gfx/gdi_util.cc',
127 'gfx/gdi_util.h', 131 'gfx/gdi_util.h',
128 'gfx/icon_util.cc', 132 'gfx/icon_util.cc',
129 'gfx/icon_util.h', 133 'gfx/icon_util.h',
130 'gfx/native_theme_win.cc', 134 'gfx/native_theme_win.cc',
131 'gfx/native_theme_win.h', 135 'gfx/native_theme_win.h',
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 }, 187 },
184 188
185 ], 189 ],
186 } 190 }
187 191
188 # Local Variables: 192 # Local Variables:
189 # tab-width:2 193 # tab-width:2
190 # indent-tabs-mode:nil 194 # indent-tabs-mode:nil
191 # End: 195 # End:
192 # vim: set expandtab tabstop=2 shiftwidth=2: 196 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698