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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 '../third_party/icu/icu.gyp:icuuc', | 81 '../third_party/icu/icu.gyp:icuuc', |
82 '../third_party/libpng/libpng.gyp:libpng', | 82 '../third_party/libpng/libpng.gyp:libpng', |
83 '../third_party/zlib/zlib.gyp:zlib', | 83 '../third_party/zlib/zlib.gyp:zlib', |
84 'gfx_resources', | 84 'gfx_resources', |
85 '<(libjpeg_gyp_path):libjpeg', | 85 '<(libjpeg_gyp_path):libjpeg', |
86 ], | 86 ], |
87 'sources': [ | 87 'sources': [ |
88 'blit.cc', | 88 'blit.cc', |
89 'blit.h', | 89 'blit.h', |
90 'brush.h', | 90 'brush.h', |
| 91 'canvas.cc', |
91 'canvas.h', | 92 'canvas.h', |
92 'canvas_skia.h', | 93 'canvas_skia.h', |
93 'canvas_skia.cc', | 94 'canvas_skia.cc', |
94 'canvas_skia_linux.cc', | 95 'canvas_skia_linux.cc', |
95 'canvas_skia_mac.mm', | 96 'canvas_skia_mac.mm', |
96 'canvas_skia_paint.h', | 97 'canvas_skia_paint.h', |
97 'canvas_skia_win.cc', | 98 'canvas_skia_win.cc', |
98 'codec/jpeg_codec.cc', | 99 'codec/jpeg_codec.cc', |
99 'codec/jpeg_codec.h', | 100 'codec/jpeg_codec.h', |
100 'codec/png_codec.cc', | 101 'codec/png_codec.cc', |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 }, | 223 }, |
223 | 224 |
224 ], | 225 ], |
225 } | 226 } |
226 | 227 |
227 # Local Variables: | 228 # Local Variables: |
228 # tab-width:2 | 229 # tab-width:2 |
229 # indent-tabs-mode:nil | 230 # indent-tabs-mode:nil |
230 # End: | 231 # End: |
231 # vim: set expandtab tabstop=2 shiftwidth=2: | 232 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |