| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 ], | 106 ], |
| 107 'conditions': [ | 107 'conditions': [ |
| 108 ['OS=="win"', { | 108 ['OS=="win"', { |
| 109 'sources': [ | 109 'sources': [ |
| 110 'gdi_util.cc', | 110 'gdi_util.cc', |
| 111 'gdi_util.h', | 111 'gdi_util.h', |
| 112 'icon_util.cc', | 112 'icon_util.cc', |
| 113 'icon_util.h', | 113 'icon_util.h', |
| 114 'native_theme_win.cc', | 114 'native_theme_win.cc', |
| 115 'native_theme_win.h', | 115 'native_theme_win.h', |
| 116 'window_impl.cc', |
| 117 'window_impl.h' |
| 116 ], | 118 ], |
| 117 }], | 119 }], |
| 118 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { | 120 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { |
| 119 'dependencies': [ | 121 'dependencies': [ |
| 120 # font_gtk.cc uses fontconfig. | 122 # font_gtk.cc uses fontconfig. |
| 121 # TODO(evanm): I think this is wrong; it should just use GTK. | 123 # TODO(evanm): I think this is wrong; it should just use GTK. |
| 122 '../build/linux/system.gyp:fontconfig', | 124 '../build/linux/system.gyp:fontconfig', |
| 123 ], | 125 ], |
| 124 'sources': [ | 126 'sources': [ |
| 125 'font_skia.cc', | 127 'font_skia.cc', |
| 126 'gtk_native_view_id_manager.cc', | 128 'gtk_native_view_id_manager.cc', |
| 127 'gtk_native_view_id_manager.h', | 129 'gtk_native_view_id_manager.h', |
| 128 'gtk_util.cc', | 130 'gtk_util.cc', |
| 129 'gtk_util.h', | 131 'gtk_util.h', |
| 130 'native_widget_types_gtk.cc', | 132 'native_widget_types_gtk.cc', |
| 131 ], | 133 ], |
| 132 }], | 134 }], |
| 133 ], | 135 ], |
| 134 }, | 136 }, |
| 135 ], | 137 ], |
| 136 } | 138 } |
| 137 | 139 |
| 138 # Local Variables: | 140 # Local Variables: |
| 139 # tab-width:2 | 141 # tab-width:2 |
| 140 # indent-tabs-mode:nil | 142 # indent-tabs-mode:nil |
| 141 # End: | 143 # End: |
| 142 # vim: set expandtab tabstop=2 shiftwidth=2: | 144 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |