| 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/event_tracer_impl.cc', |
| 40 'ext/event_tracer_impl.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/opacity_draw_filter.cc', | 46 'ext/opacity_draw_filter.cc', |
| 45 'ext/opacity_draw_filter.h', | 47 'ext/opacity_draw_filter.h', |
| 46 'ext/paint_simplifier.cc', | 48 'ext/paint_simplifier.cc', |
| 47 'ext/paint_simplifier.h', | 49 'ext/paint_simplifier.h', |
| 48 'ext/pixel_ref_utils.cc', | 50 'ext/pixel_ref_utils.cc', |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 'target_conditions': [ | 119 'target_conditions': [ |
| 118 # Pull in specific linux files for android (which have been filtered out | 120 # Pull in specific linux files for android (which have been filtered out |
| 119 # by file name rules). | 121 # by file name rules). |
| 120 [ 'OS == "android"', { | 122 [ 'OS == "android"', { |
| 121 'sources/': [ | 123 'sources/': [ |
| 122 ['include', 'ext/platform_device_linux\\.cc$'], | 124 ['include', 'ext/platform_device_linux\\.cc$'], |
| 123 ], | 125 ], |
| 124 }], | 126 }], |
| 125 ], | 127 ], |
| 126 } | 128 } |
| OLD | NEW |