Chromium Code Reviews| Index: ui/gfx/BUILD.gn |
| diff --git a/ui/gfx/BUILD.gn b/ui/gfx/BUILD.gn |
| index a74f5ac46c5a83aacf73b0c9522b58b3b3910da4..d7e2dc12d1e20c4e7a8618b406f71aba9f6a0f0d 100644 |
| --- a/ui/gfx/BUILD.gn |
| +++ b/ui/gfx/BUILD.gn |
| @@ -58,7 +58,7 @@ component("gfx") { |
| "break_list.h", |
| "canvas.cc", |
| "canvas.h", |
| - "canvas_android.cc", |
| + "canvas_notimplemented.cc", |
| "canvas_paint_mac.h", |
| "canvas_paint_mac.mm", |
| "canvas_paint_win.cc", |
| @@ -253,7 +253,7 @@ component("gfx") { |
| sources += [ "render_text_ozone.cc" ] |
| } |
| } |
| - |
| + |
| # iOS. |
| if (is_ios) { |
| sources -= [ |
| @@ -312,6 +312,11 @@ component("gfx") { |
| configs += [ "//build/config/linux:fontconfig" ] |
| } |
| + # Canvas_Skia stuff. |
| + if(use_canvas_skia){ |
|
Alexei Svitkine (slow)
2014/07/18 20:19:10
Nit: add spaces after if and before {
Nico
2014/07/18 20:19:57
nit: add a space between if and (
|
| + sources -= ["canvas_notimplemented.cc",] |
|
Nico
2014/07/18 20:19:57
nit: I think one-line lists usually don't have a t
|
| + } |
| + |
| # Ozone stuff. |
| if (use_ozone) { |
| sources += [ |