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 29 matching lines...) Expand all Loading... |
40 'ext/image_operations.cc', | 40 'ext/image_operations.cc', |
41 'ext/opacity_filter_canvas.cc', | 41 'ext/opacity_filter_canvas.cc', |
42 'ext/platform_canvas.cc', | 42 'ext/platform_canvas.cc', |
43 'ext/platform_device.cc', | 43 'ext/platform_device.cc', |
44 'ext/platform_device_linux.cc', | 44 'ext/platform_device_linux.cc', |
45 'ext/platform_device_mac.cc', | 45 'ext/platform_device_mac.cc', |
46 'ext/platform_device_win.cc', | 46 'ext/platform_device_win.cc', |
47 'ext/recursive_gaussian_convolution.cc', | 47 'ext/recursive_gaussian_convolution.cc', |
48 'ext/SkDiscardableMemory_chrome.cc', | 48 'ext/SkDiscardableMemory_chrome.cc', |
49 'ext/SkMemory_new_handler.cpp', | 49 'ext/SkMemory_new_handler.cpp', |
| 50 'ext/skia_commit_hash_none.cc', |
50 'ext/skia_histogram.cc', | 51 'ext/skia_histogram.cc', |
51 'ext/skia_memory_dump_provider.cc', | 52 'ext/skia_memory_dump_provider.cc', |
52 'ext/skia_trace_memory_dump_impl.cc', | 53 'ext/skia_trace_memory_dump_impl.cc', |
53 'ext/skia_utils_base.cc', | 54 'ext/skia_utils_base.cc', |
54 'ext/skia_utils_ios.mm', | 55 'ext/skia_utils_ios.mm', |
55 'ext/skia_utils_mac.mm', | 56 'ext/skia_utils_mac.mm', |
56 'ext/skia_utils_win.cc', | 57 'ext/skia_utils_win.cc', |
57 ], | 58 ], |
58 'conditions': [ | 59 'conditions': [ |
59 [ 'OS == "ios"', { | 60 [ 'OS == "ios"', { |
(...skipping 28 matching lines...) Expand all Loading... |
88 'target_conditions': [ | 89 'target_conditions': [ |
89 # Pull in specific linux files for android (which have been filtered out | 90 # Pull in specific linux files for android (which have been filtered out |
90 # by file name rules). | 91 # by file name rules). |
91 [ 'OS == "android"', { | 92 [ 'OS == "android"', { |
92 'sources/': [ | 93 'sources/': [ |
93 ['include', 'ext/platform_device_linux\\.cc$'], | 94 ['include', 'ext/platform_device_linux\\.cc$'], |
94 ], | 95 ], |
95 }], | 96 }], |
96 ], | 97 ], |
97 } | 98 } |
OLD | NEW |