| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 { | 72 { |
| 73 'target_name': 'gfx', | 73 'target_name': 'gfx', |
| 74 'type': '<(library)', | 74 'type': '<(library)', |
| 75 'msvs_guid': '13A8D36C-0467-4B4E-BAA3-FD69C45F076A', | 75 'msvs_guid': '13A8D36C-0467-4B4E-BAA3-FD69C45F076A', |
| 76 'dependencies': [ | 76 'dependencies': [ |
| 77 '../base/base.gyp:base', | 77 '../base/base.gyp:base', |
| 78 '../base/base.gyp:base_i18n', | 78 '../base/base.gyp:base_i18n', |
| 79 '../skia/skia.gyp:skia', | 79 '../skia/skia.gyp:skia', |
| 80 '../third_party/icu/icu.gyp:icui18n', | 80 '../third_party/icu/icu.gyp:icui18n', |
| 81 '../third_party/icu/icu.gyp:icuuc', | 81 '../third_party/icu/icu.gyp:icuuc', |
| 82 '../third_party/libjpeg/libjpeg.gyp:libjpeg', | |
| 83 '../third_party/libpng/libpng.gyp:libpng', | 82 '../third_party/libpng/libpng.gyp:libpng', |
| 84 '../third_party/zlib/zlib.gyp:zlib', | 83 '../third_party/zlib/zlib.gyp:zlib', |
| 85 'gfx_resources', | 84 'gfx_resources', |
| 86 ], | 85 ], |
| 87 'sources': [ | 86 'sources': [ |
| 88 'blit.cc', | 87 'blit.cc', |
| 89 'blit.h', | 88 'blit.h', |
| 90 'brush.h', | 89 'brush.h', |
| 91 'canvas.h', | 90 'canvas.h', |
| 92 'canvas_skia.h', | 91 'canvas_skia.h', |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 'gtk_native_view_id_manager.h', | 168 'gtk_native_view_id_manager.h', |
| 170 'gtk_preserve_window.cc', | 169 'gtk_preserve_window.cc', |
| 171 'gtk_preserve_window.h', | 170 'gtk_preserve_window.h', |
| 172 'gtk_util.cc', | 171 'gtk_util.cc', |
| 173 'gtk_util.h', | 172 'gtk_util.h', |
| 174 'native_theme_linux.cc', | 173 'native_theme_linux.cc', |
| 175 'native_theme_linux.h', | 174 'native_theme_linux.h', |
| 176 'native_widget_types_gtk.cc', | 175 'native_widget_types_gtk.cc', |
| 177 ], | 176 ], |
| 178 }], | 177 }], |
| 179 ], | 178 ['libjpeg_turbo==1', { |
| 179 'dependencies': [ |
| 180 '../third_party/libjpeg_turbo/libjpeg.gyp:libjpeg', |
| 181 ], |
| 182 }, { |
| 183 'dependencies': [ |
| 184 '../third_party/libjpeg/libjpeg.gyp:libjpeg', |
| 185 ], |
| 186 }], |
| 187 ], |
| 180 }, | 188 }, |
| 181 { | 189 { |
| 182 # theme_resources also generates a .cc file, so it can't use the rules abo
ve. | 190 # theme_resources also generates a .cc file, so it can't use the rules abo
ve. |
| 183 'target_name': 'gfx_resources', | 191 'target_name': 'gfx_resources', |
| 184 'type': 'none', | 192 'type': 'none', |
| 185 'msvs_guid' : '5738AE53-E919-4987-A2EF-15FDBD8F90F6', | 193 'msvs_guid' : '5738AE53-E919-4987-A2EF-15FDBD8F90F6', |
| 186 'actions': [ | 194 'actions': [ |
| 187 { | 195 { |
| 188 'action_name': 'gfx_resources', | 196 'action_name': 'gfx_resources', |
| 189 'variables': { | 197 'variables': { |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 }, | 229 }, |
| 222 | 230 |
| 223 ], | 231 ], |
| 224 } | 232 } |
| 225 | 233 |
| 226 # Local Variables: | 234 # Local Variables: |
| 227 # tab-width:2 | 235 # tab-width:2 |
| 228 # indent-tabs-mode:nil | 236 # indent-tabs-mode:nil |
| 229 # End: | 237 # End: |
| 230 # vim: set expandtab tabstop=2 shiftwidth=2: | 238 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |