Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(356)

Side by Side Diff: ui/gfx/gfx.gyp

Issue 382633002: Fix use_canvas_skia = 0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Temp fix for gn build Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« ui/gfx/BUILD.gn ('K') | « ui/gfx/canvas_notimplemented.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
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 }
OLDNEW
« ui/gfx/BUILD.gn ('K') | « ui/gfx/canvas_notimplemented.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698