| 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 'grit_info_cmd': ['python', '../tools/grit/grit_info.py'], | 8 'grit_info_cmd': ['python', '../tools/grit/grit_info.py'], |
| 9 'grit_cmd': ['python', '../tools/grit/grit.py'], | 9 'grit_cmd': ['python', '../tools/grit/grit.py'], |
| 10 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/gfx', | 10 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/gfx', |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 'canvas_skia_paint.h', | 90 'canvas_skia_paint.h', |
| 91 'canvas_skia_win.cc', | 91 'canvas_skia_win.cc', |
| 92 'codec/jpeg_codec.cc', | 92 'codec/jpeg_codec.cc', |
| 93 'codec/jpeg_codec.h', | 93 'codec/jpeg_codec.h', |
| 94 'codec/png_codec.cc', | 94 'codec/png_codec.cc', |
| 95 'codec/png_codec.h', | 95 'codec/png_codec.h', |
| 96 'color_utils.cc', | 96 'color_utils.cc', |
| 97 'color_utils.h', | 97 'color_utils.h', |
| 98 'favicon_size.h', | 98 'favicon_size.h', |
| 99 'font.h', | 99 'font.h', |
| 100 'font_gtk.cc', | 100 'font.cc', |
| 101 'font_mac.mm', | |
| 102 'font_win.cc', | |
| 103 'gfx_paths.cc', | 101 'gfx_paths.cc', |
| 104 'gfx_paths.h', | 102 'gfx_paths.h', |
| 105 'insets.cc', | 103 'insets.cc', |
| 106 'insets.h', | 104 'insets.h', |
| 107 'native_widget_types.h', | 105 'native_widget_types.h', |
| 108 'path.cc', | 106 'path.cc', |
| 109 'path.h', | 107 'path.h', |
| 110 'path_gtk.cc', | 108 'path_gtk.cc', |
| 111 'path_win.cc', | 109 'path_win.cc', |
| 110 'platform_font.h', |
| 111 'platform_font_gtk.h', |
| 112 'platform_font_gtk.cc', |
| 113 'platform_font_mac.h', |
| 114 'platform_font_mac.mm', |
| 115 'platform_font_win.h', |
| 116 'platform_font_win.cc', |
| 112 'point.cc', | 117 'point.cc', |
| 113 'point.h', | 118 'point.h', |
| 114 'rect.cc', | 119 'rect.cc', |
| 115 'rect.h', | 120 'rect.h', |
| 116 'scrollbar_size.cc', | 121 'scrollbar_size.cc', |
| 117 'scrollbar_size.h', | 122 'scrollbar_size.h', |
| 118 'size.cc', | 123 'size.cc', |
| 119 'size.h', | 124 'size.h', |
| 120 'skbitmap_operations.cc', | 125 'skbitmap_operations.cc', |
| 121 'skbitmap_operations.h', | 126 'skbitmap_operations.h', |
| (...skipping 22 matching lines...) Expand all Loading... |
| 144 ], | 149 ], |
| 145 }], | 150 }], |
| 146 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { | 151 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { |
| 147 'dependencies': [ | 152 'dependencies': [ |
| 148 # font_gtk.cc uses fontconfig. | 153 # font_gtk.cc uses fontconfig. |
| 149 # TODO(evanm): I think this is wrong; it should just use GTK. | 154 # TODO(evanm): I think this is wrong; it should just use GTK. |
| 150 '../build/linux/system.gyp:fontconfig', | 155 '../build/linux/system.gyp:fontconfig', |
| 151 '../build/linux/system.gyp:gtk', | 156 '../build/linux/system.gyp:gtk', |
| 152 ], | 157 ], |
| 153 'sources': [ | 158 'sources': [ |
| 154 'font_skia.cc', | |
| 155 'gtk_native_view_id_manager.cc', | 159 'gtk_native_view_id_manager.cc', |
| 156 'gtk_native_view_id_manager.h', | 160 'gtk_native_view_id_manager.h', |
| 157 'gtk_util.cc', | 161 'gtk_util.cc', |
| 158 'gtk_util.h', | 162 'gtk_util.h', |
| 159 'native_widget_types_gtk.cc', | 163 'native_widget_types_gtk.cc', |
| 160 ], | 164 ], |
| 161 }], | 165 }], |
| 162 ], | 166 ], |
| 163 }, | 167 }, |
| 164 { | 168 { |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 }, | 208 }, |
| 205 | 209 |
| 206 ], | 210 ], |
| 207 } | 211 } |
| 208 | 212 |
| 209 # Local Variables: | 213 # Local Variables: |
| 210 # tab-width:2 | 214 # tab-width:2 |
| 211 # indent-tabs-mode:nil | 215 # indent-tabs-mode:nil |
| 212 # End: | 216 # End: |
| 213 # vim: set expandtab tabstop=2 shiftwidth=2: | 217 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |