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