| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 'ext/event_tracer_impl.h', | 49 'ext/event_tracer_impl.h', |
| 50 'ext/fontmgr_default_win.cc', | 50 'ext/fontmgr_default_win.cc', |
| 51 'ext/fontmgr_default_win.h', | 51 'ext/fontmgr_default_win.h', |
| 52 'ext/google_logging.cc', | 52 'ext/google_logging.cc', |
| 53 'ext/image_operations.cc', | 53 'ext/image_operations.cc', |
| 54 'ext/image_operations.h', | 54 'ext/image_operations.h', |
| 55 'ext/lazy_pixel_ref.cc', | 55 'ext/lazy_pixel_ref.cc', |
| 56 'ext/lazy_pixel_ref.h', | 56 'ext/lazy_pixel_ref.h', |
| 57 'ext/opacity_draw_filter.cc', | 57 'ext/opacity_draw_filter.cc', |
| 58 'ext/opacity_draw_filter.h', | 58 'ext/opacity_draw_filter.h', |
| 59 'ext/paint_simplifier.cc', | |
| 60 'ext/paint_simplifier.h', | |
| 61 'ext/pixel_ref_utils.cc', | 59 'ext/pixel_ref_utils.cc', |
| 62 'ext/pixel_ref_utils.h', | 60 'ext/pixel_ref_utils.h', |
| 63 'ext/platform_canvas.cc', | 61 'ext/platform_canvas.cc', |
| 64 'ext/platform_canvas.h', | 62 'ext/platform_canvas.h', |
| 65 'ext/platform_device.cc', | 63 'ext/platform_device.cc', |
| 66 'ext/platform_device.h', | 64 'ext/platform_device.h', |
| 67 'ext/platform_device_linux.cc', | 65 'ext/platform_device_linux.cc', |
| 68 'ext/platform_device_mac.cc', | 66 'ext/platform_device_mac.cc', |
| 69 'ext/platform_device_win.cc', | 67 'ext/platform_device_win.cc', |
| 70 'ext/recursive_gaussian_convolution.cc', | 68 'ext/recursive_gaussian_convolution.cc', |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 'target_conditions': [ | 115 'target_conditions': [ |
| 118 # Pull in specific linux files for android (which have been filtered out | 116 # Pull in specific linux files for android (which have been filtered out |
| 119 # by file name rules). | 117 # by file name rules). |
| 120 [ 'OS == "android"', { | 118 [ 'OS == "android"', { |
| 121 'sources/': [ | 119 'sources/': [ |
| 122 ['include', 'ext/platform_device_linux\\.cc$'], | 120 ['include', 'ext/platform_device_linux\\.cc$'], |
| 123 ], | 121 ], |
| 124 }], | 122 }], |
| 125 ], | 123 ], |
| 126 } | 124 } |
| OLD | NEW |