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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
314 ], | 314 ], |
315 }, { | 315 }, { |
316 'dependencies': [ | 316 'dependencies': [ |
317 '<(libjpeg_gyp_path):libjpeg', | 317 '<(libjpeg_gyp_path):libjpeg', |
318 ], | 318 ], |
319 }], | 319 }], |
320 # TODO(asvitkine): Switch all platforms to use canvas_skia.cc. | 320 # TODO(asvitkine): Switch all platforms to use canvas_skia.cc. |
321 # http://crbug.com/105550 | 321 # http://crbug.com/105550 |
322 ['use_canvas_skia==1', { | 322 ['use_canvas_skia==1', { |
323 'sources!': [ | 323 'sources!': [ |
324 'canvas_android.cc', | 324 'canvas_notimplemented.cc', |
325 ], | 325 ], |
326 }, { # use_canvas_skia!=1 | 326 }, { # use_canvas_skia!=1 |
327 'sources!': [ | 327 'sources!': [ |
328 'canvas_skia.cc', | 328 'canvas_skia.cc', |
329 ], | 329 ], |
330 }], | 330 }], |
331 ['OS=="win"', { | 331 ['OS=="win"', { |
332 'sources': [ | 332 'sources': [ |
333 'gdi_util.cc', | 333 'gdi_util.cc', |
334 'gdi_util.h', | 334 'gdi_util.h', |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
469 ], | 469 ], |
470 'variables': { | 470 'variables': { |
471 'jni_gen_package': 'ui/gfx', | 471 'jni_gen_package': 'ui/gfx', |
472 }, | 472 }, |
473 'includes': [ '../../build/jni_generator.gypi' ], | 473 'includes': [ '../../build/jni_generator.gypi' ], |
474 }, | 474 }, |
475 ], | 475 ], |
476 }], | 476 }], |
477 ], | 477 ], |
478 } | 478 } |
OLD | NEW |