| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 'gfx/native_theme_win.cc', | 126 'gfx/native_theme_win.cc', |
| 127 'gfx/native_theme_win.h', | 127 'gfx/native_theme_win.h', |
| 128 'gfx/win_util.cc', | 128 'gfx/win_util.cc', |
| 129 'gfx/win_util.h', | 129 'gfx/win_util.h', |
| 130 ], | 130 ], |
| 131 'include_dirs': [ | 131 'include_dirs': [ |
| 132 '../', | 132 '../', |
| 133 '../third_party/wtl/include', | 133 '../third_party/wtl/include', |
| 134 ], | 134 ], |
| 135 }], | 135 }], |
| 136 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { | 136 ['toolkit_uses_gtk==1', { |
| 137 'dependencies': [ | 137 'dependencies': [ |
| 138 # font_gtk.cc uses fontconfig. | 138 # font_gtk.cc uses fontconfig. |
| 139 # TODO(evanm): I think this is wrong; it should just use GTK. | 139 # TODO(evanm): I think this is wrong; it should just use GTK. |
| 140 '../build/linux/system.gyp:fontconfig', | 140 '../build/linux/system.gyp:fontconfig', |
| 141 '../build/linux/system.gyp:gtk', | 141 '../build/linux/system.gyp:gtk', |
| 142 ], | 142 ], |
| 143 'sources': [ | 143 'sources': [ |
| 144 'gfx/gtk_native_view_id_manager.cc', | 144 'gfx/gtk_native_view_id_manager.cc', |
| 145 'gfx/gtk_native_view_id_manager.h', | 145 'gfx/gtk_native_view_id_manager.h', |
| 146 'gfx/gtk_preserve_window.cc', | 146 'gfx/gtk_preserve_window.cc', |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 }, | 180 }, |
| 181 | 181 |
| 182 ], | 182 ], |
| 183 } | 183 } |
| 184 | 184 |
| 185 # Local Variables: | 185 # Local Variables: |
| 186 # tab-width:2 | 186 # tab-width:2 |
| 187 # indent-tabs-mode:nil | 187 # indent-tabs-mode:nil |
| 188 # End: | 188 # End: |
| 189 # vim: set expandtab tabstop=2 shiftwidth=2: | 189 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |