OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 'animation/slide_animation.h', | 124 'animation/slide_animation.h', |
125 'animation/throb_animation.cc', | 125 'animation/throb_animation.cc', |
126 'animation/throb_animation.h', | 126 'animation/throb_animation.h', |
127 'animation/tween.cc', | 127 'animation/tween.cc', |
128 'animation/tween.h', | 128 'animation/tween.h', |
129 'blit.cc', | 129 'blit.cc', |
130 'blit.h', | 130 'blit.h', |
131 'break_list.h', | 131 'break_list.h', |
132 'canvas.cc', | 132 'canvas.cc', |
133 'canvas.h', | 133 'canvas.h', |
134 'canvas_android.cc', | 134 'canvas_notimplemented.cc', |
135 'canvas_paint_mac.h', | 135 'canvas_paint_mac.h', |
136 'canvas_paint_mac.mm', | 136 'canvas_paint_mac.mm', |
137 'canvas_paint_win.cc', | 137 'canvas_paint_win.cc', |
138 'canvas_paint_win.h', | 138 'canvas_paint_win.h', |
139 'canvas_skia.cc', | 139 'canvas_skia.cc', |
140 'canvas_skia_paint.h', | 140 'canvas_skia_paint.h', |
141 'codec/jpeg_codec.cc', | 141 'codec/jpeg_codec.cc', |
142 'codec/jpeg_codec.h', | 142 'codec/jpeg_codec.h', |
143 'codec/png_codec.cc', | 143 'codec/png_codec.cc', |
144 'codec/png_codec.h', | 144 'codec/png_codec.h', |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 ], | 307 ], |
308 }, { | 308 }, { |
309 'dependencies': [ | 309 'dependencies': [ |
310 '<(libjpeg_gyp_path):libjpeg', | 310 '<(libjpeg_gyp_path):libjpeg', |
311 ], | 311 ], |
312 }], | 312 }], |
313 # TODO(asvitkine): Switch all platforms to use canvas_skia.cc. | 313 # TODO(asvitkine): Switch all platforms to use canvas_skia.cc. |
314 # http://crbug.com/105550 | 314 # http://crbug.com/105550 |
315 ['use_canvas_skia==1', { | 315 ['use_canvas_skia==1', { |
316 'sources!': [ | 316 'sources!': [ |
317 'canvas_android.cc', | 317 'canvas_notimplemented.cc', |
318 ], | 318 ], |
319 }, { # use_canvas_skia!=1 | 319 }, { # use_canvas_skia!=1 |
320 'sources!': [ | 320 'sources!': [ |
321 'canvas_skia.cc', | 321 'canvas_skia.cc', |
322 ], | 322 ], |
323 }], | 323 }], |
324 ['OS=="win"', { | 324 ['OS=="win"', { |
325 'sources': [ | 325 'sources': [ |
326 'gdi_util.cc', | 326 'gdi_util.cc', |
327 'gdi_util.h', | 327 'gdi_util.h', |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
462 ], | 462 ], |
463 'variables': { | 463 'variables': { |
464 'jni_gen_package': 'ui/gfx', | 464 'jni_gen_package': 'ui/gfx', |
465 }, | 465 }, |
466 'includes': [ '../../build/jni_generator.gypi' ], | 466 'includes': [ '../../build/jni_generator.gypi' ], |
467 }, | 467 }, |
468 ], | 468 ], |
469 }], | 469 }], |
470 ], | 470 ], |
471 } | 471 } |
OLD | NEW |