| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 'ext/convolver.cc', | 42 'ext/convolver.cc', |
| 43 'ext/convolver.h', | 43 'ext/convolver.h', |
| 44 'ext/google_logging.cc', | 44 'ext/google_logging.cc', |
| 45 'ext/image_operations.cc', | 45 'ext/image_operations.cc', |
| 46 'ext/image_operations.h', | 46 'ext/image_operations.h', |
| 47 'ext/lazy_pixel_ref.cc', | 47 'ext/lazy_pixel_ref.cc', |
| 48 'ext/lazy_pixel_ref.h', | 48 'ext/lazy_pixel_ref.h', |
| 49 'ext/lazy_pixel_ref_utils.cc', | 49 'ext/lazy_pixel_ref_utils.cc', |
| 50 'ext/lazy_pixel_ref_utils.h', | 50 'ext/lazy_pixel_ref_utils.h', |
| 51 'ext/SkThread_chrome.cc', | 51 'ext/SkThread_chrome.cc', |
| 52 'ext/opacity_draw_filter.cc', |
| 53 'ext/opacity_draw_filter.h', |
| 52 'ext/paint_simplifier.cc', | 54 'ext/paint_simplifier.cc', |
| 53 'ext/paint_simplifier.h', | 55 'ext/paint_simplifier.h', |
| 54 'ext/platform_canvas.cc', | 56 'ext/platform_canvas.cc', |
| 55 'ext/platform_canvas.h', | 57 'ext/platform_canvas.h', |
| 56 'ext/platform_device.cc', | 58 'ext/platform_device.cc', |
| 57 'ext/platform_device.h', | 59 'ext/platform_device.h', |
| 58 'ext/platform_device_linux.cc', | 60 'ext/platform_device_linux.cc', |
| 59 'ext/platform_device_mac.cc', | 61 'ext/platform_device_mac.cc', |
| 60 'ext/platform_device_win.cc', | 62 'ext/platform_device_win.cc', |
| 61 'ext/recursive_gaussian_convolution.cc', | 63 'ext/recursive_gaussian_convolution.cc', |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 'target_conditions': [ | 127 'target_conditions': [ |
| 126 # Pull in specific linux files for android (which have been filtered out | 128 # Pull in specific linux files for android (which have been filtered out |
| 127 # by file name rules). | 129 # by file name rules). |
| 128 [ 'OS == "android"', { | 130 [ 'OS == "android"', { |
| 129 'sources/': [ | 131 'sources/': [ |
| 130 ['include', 'ext/platform_device_linux\\.cc$'], | 132 ['include', 'ext/platform_device_linux\\.cc$'], |
| 131 ], | 133 ], |
| 132 }], | 134 }], |
| 133 ], | 135 ], |
| 134 } | 136 } |
| OLD | NEW |