| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 import("//third_party/WebKit/Source/modules/modules.gni") | 5 import("//third_party/WebKit/Source/modules/modules.gni") |
| 6 | 6 |
| 7 blink_modules_sources("canvas2d") { | 7 blink_modules_sources("canvas2d") { |
| 8 sources = [ | 8 sources = [ |
| 9 "BaseRenderingContext2D.cpp", | 9 "BaseRenderingContext2D.cpp", |
| 10 "BaseRenderingContext2D.h", | 10 "BaseRenderingContext2D.h", |
| 11 "CanvasGradient.cpp", | 11 "CanvasGradient.cpp", |
| 12 "CanvasGradient.h", | 12 "CanvasGradient.h", |
| 13 "CanvasPathMethods.cpp", | 13 "CanvasPath.cpp", |
| 14 "CanvasPathMethods.h", | 14 "CanvasPath.h", |
| 15 "CanvasPattern.cpp", | 15 "CanvasPattern.cpp", |
| 16 "CanvasPattern.h", | 16 "CanvasPattern.h", |
| 17 "CanvasRenderingContext2D.cpp", | 17 "CanvasRenderingContext2D.cpp", |
| 18 "CanvasRenderingContext2D.h", | 18 "CanvasRenderingContext2D.h", |
| 19 "CanvasRenderingContext2DState.cpp", | 19 "CanvasRenderingContext2DState.cpp", |
| 20 "CanvasRenderingContext2DState.h", | 20 "CanvasRenderingContext2DState.h", |
| 21 "CanvasStyle.cpp", | 21 "CanvasStyle.cpp", |
| 22 "CanvasStyle.h", | 22 "CanvasStyle.h", |
| 23 "ClipList.cpp", | 23 "ClipList.cpp", |
| 24 "ClipList.h", | 24 "ClipList.h", |
| 25 "HitRegion.cpp", | 25 "HitRegion.cpp", |
| 26 "HitRegion.h", | 26 "HitRegion.h", |
| 27 "Path2D.h", | 27 "Path2D.h", |
| 28 ] | 28 ] |
| 29 } | 29 } |
| OLD | NEW |