OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 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 # This gypi file contains all the Chrome-specific enhancements to Skia. | 6 # This gypi file contains all the Chrome-specific enhancements to Skia. |
7 # In component mode (shared_lib) it is folded into a single shared library with | 7 # In component mode (shared_lib) it is folded into a single shared library with |
8 # the Skia files but in all other cases it is a separate library. | 8 # the Skia files but in all other cases it is a separate library. |
9 { | 9 { |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 18 matching lines...) Expand all Loading... |
29 'ext/bitmap_platform_device_cairo.cc', | 29 'ext/bitmap_platform_device_cairo.cc', |
30 'ext/bitmap_platform_device_cairo.h', | 30 'ext/bitmap_platform_device_cairo.h', |
31 'ext/bitmap_platform_device_mac.cc', | 31 'ext/bitmap_platform_device_mac.cc', |
32 'ext/bitmap_platform_device_mac.h', | 32 'ext/bitmap_platform_device_mac.h', |
33 'ext/bitmap_platform_device_skia.cc', | 33 'ext/bitmap_platform_device_skia.cc', |
34 'ext/bitmap_platform_device_skia.h', | 34 'ext/bitmap_platform_device_skia.h', |
35 'ext/bitmap_platform_device_win.cc', | 35 'ext/bitmap_platform_device_win.cc', |
36 'ext/bitmap_platform_device_win.h', | 36 'ext/bitmap_platform_device_win.h', |
37 'ext/convolver.cc', | 37 'ext/convolver.cc', |
38 'ext/convolver.h', | 38 'ext/convolver.h', |
| 39 'ext/discardable_pixel_ref_utils.cc', |
| 40 'ext/discardable_pixel_ref_utils.h', |
39 'ext/google_logging.cc', | 41 'ext/google_logging.cc', |
40 'ext/image_operations.cc', | 42 'ext/image_operations.cc', |
41 'ext/image_operations.h', | 43 'ext/image_operations.h', |
42 'ext/lazy_pixel_ref.cc', | 44 'ext/lazy_pixel_ref.cc', |
43 'ext/lazy_pixel_ref.h', | 45 'ext/lazy_pixel_ref.h', |
44 'ext/lazy_pixel_ref_utils.cc', | |
45 'ext/lazy_pixel_ref_utils.h', | |
46 'ext/opacity_draw_filter.cc', | 46 'ext/opacity_draw_filter.cc', |
47 'ext/opacity_draw_filter.h', | 47 'ext/opacity_draw_filter.h', |
48 'ext/paint_simplifier.cc', | 48 'ext/paint_simplifier.cc', |
49 'ext/paint_simplifier.h', | 49 'ext/paint_simplifier.h', |
50 'ext/platform_canvas.cc', | 50 'ext/platform_canvas.cc', |
51 'ext/platform_canvas.h', | 51 'ext/platform_canvas.h', |
52 'ext/platform_device.cc', | 52 'ext/platform_device.cc', |
53 'ext/platform_device.h', | 53 'ext/platform_device.h', |
54 'ext/platform_device_linux.cc', | 54 'ext/platform_device_linux.cc', |
55 'ext/platform_device_mac.cc', | 55 'ext/platform_device_mac.cc', |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 'target_conditions': [ | 117 'target_conditions': [ |
118 # Pull in specific linux files for android (which have been filtered out | 118 # Pull in specific linux files for android (which have been filtered out |
119 # by file name rules). | 119 # by file name rules). |
120 [ 'OS == "android"', { | 120 [ 'OS == "android"', { |
121 'sources/': [ | 121 'sources/': [ |
122 ['include', 'ext/platform_device_linux\\.cc$'], | 122 ['include', 'ext/platform_device_linux\\.cc$'], |
123 ], | 123 ], |
124 }], | 124 }], |
125 ], | 125 ], |
126 } | 126 } |
OLD | NEW |