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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 '../third_party/icu/icu.gyp:icui18n', | 55 '../third_party/icu/icu.gyp:icui18n', |
56 '../third_party/icu/icu.gyp:icuuc', | 56 '../third_party/icu/icu.gyp:icuuc', |
57 '../third_party/libjpeg/libjpeg.gyp:libjpeg', | 57 '../third_party/libjpeg/libjpeg.gyp:libjpeg', |
58 '../third_party/libpng/libpng.gyp:libpng', | 58 '../third_party/libpng/libpng.gyp:libpng', |
59 '../third_party/sqlite/sqlite.gyp:sqlite', | 59 '../third_party/sqlite/sqlite.gyp:sqlite', |
60 '../third_party/zlib/zlib.gyp:zlib', | 60 '../third_party/zlib/zlib.gyp:zlib', |
61 ], | 61 ], |
62 'sources': [ | 62 'sources': [ |
63 'blit.cc', | 63 'blit.cc', |
64 'blit.h', | 64 'blit.h', |
65 'canvas.cc', | |
66 'canvas.h', | 65 'canvas.h', |
67 'canvas_2.h', | 66 'canvas_2.h', |
68 'canvas_linux.cc', | 67 'canvas_skia.cc', |
69 'canvas_mac.mm', | 68 'canvas_skia.h', |
70 'canvas_paint.h', | 69 'canvas_skia_linux.cc', |
71 'canvas_win.cc', | 70 'canvas_skia_mac.mm', |
| 71 'canvas_skia_paint.h', |
| 72 'canvas_skia_win.cc', |
72 'codec/jpeg_codec.cc', | 73 'codec/jpeg_codec.cc', |
73 'codec/jpeg_codec.h', | 74 'codec/jpeg_codec.h', |
74 'codec/png_codec.cc', | 75 'codec/png_codec.cc', |
75 'codec/png_codec.h', | 76 'codec/png_codec.h', |
76 'color_utils.cc', | 77 'color_utils.cc', |
77 'color_utils.h', | 78 'color_utils.h', |
78 'favicon_size.h', | 79 'favicon_size.h', |
79 'font.h', | 80 'font.h', |
80 'font_gtk.cc', | 81 'font_gtk.cc', |
81 'font_mac.mm', | 82 'font_mac.mm', |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 ], | 134 ], |
134 }, | 135 }, |
135 ], | 136 ], |
136 } | 137 } |
137 | 138 |
138 # Local Variables: | 139 # Local Variables: |
139 # tab-width:2 | 140 # tab-width:2 |
140 # indent-tabs-mode:nil | 141 # indent-tabs-mode:nil |
141 # End: | 142 # End: |
142 # vim: set expandtab tabstop=2 shiftwidth=2: | 143 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |