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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 'ext/platform_device.h', | 64 'ext/platform_device.h', |
65 'ext/platform_device_linux.cc', | 65 'ext/platform_device_linux.cc', |
66 'ext/platform_device_mac.cc', | 66 'ext/platform_device_mac.cc', |
67 'ext/platform_device_win.cc', | 67 'ext/platform_device_win.cc', |
68 'ext/recursive_gaussian_convolution.cc', | 68 'ext/recursive_gaussian_convolution.cc', |
69 'ext/recursive_gaussian_convolution.h', | 69 'ext/recursive_gaussian_convolution.h', |
70 'ext/refptr.h', | 70 'ext/refptr.h', |
71 'ext/SkDiscardableMemory_chrome.h', | 71 'ext/SkDiscardableMemory_chrome.h', |
72 'ext/SkDiscardableMemory_chrome.cc', | 72 'ext/SkDiscardableMemory_chrome.cc', |
73 'ext/SkMemory_new_handler.cpp', | 73 'ext/SkMemory_new_handler.cpp', |
74 'ext/skia_trace_shim.h', | |
75 'ext/skia_utils_base.cc', | 74 'ext/skia_utils_base.cc', |
76 'ext/skia_utils_base.h', | 75 'ext/skia_utils_base.h', |
77 'ext/skia_utils_ios.mm', | 76 'ext/skia_utils_ios.mm', |
78 'ext/skia_utils_ios.h', | 77 'ext/skia_utils_ios.h', |
79 'ext/skia_utils_mac.mm', | 78 'ext/skia_utils_mac.mm', |
80 'ext/skia_utils_mac.h', | 79 'ext/skia_utils_mac.h', |
81 'ext/skia_utils_win.cc', | 80 'ext/skia_utils_win.cc', |
82 'ext/skia_utils_win.h', | 81 'ext/skia_utils_win.h', |
83 'ext/vector_canvas.h', | 82 'ext/vector_canvas.h', |
84 'ext/vector_platform_device_emf_win.cc', | 83 'ext/vector_platform_device_emf_win.cc', |
(...skipping 21 matching lines...) Expand all Loading... |
106 'target_conditions': [ | 105 'target_conditions': [ |
107 # Pull in specific linux files for android (which have been filtered out | 106 # Pull in specific linux files for android (which have been filtered out |
108 # by file name rules). | 107 # by file name rules). |
109 [ 'OS == "android"', { | 108 [ 'OS == "android"', { |
110 'sources/': [ | 109 'sources/': [ |
111 ['include', 'ext/platform_device_linux\\.cc$'], | 110 ['include', 'ext/platform_device_linux\\.cc$'], |
112 ], | 111 ], |
113 }], | 112 }], |
114 ], | 113 ], |
115 } | 114 } |
OLD | NEW |