| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 'ext/skia_utils_base.h', | 76 'ext/skia_utils_base.h', |
| 77 'ext/skia_utils_ios.mm', | 77 'ext/skia_utils_ios.mm', |
| 78 'ext/skia_utils_ios.h', | 78 'ext/skia_utils_ios.h', |
| 79 'ext/skia_utils_mac.mm', | 79 'ext/skia_utils_mac.mm', |
| 80 'ext/skia_utils_mac.h', | 80 'ext/skia_utils_mac.h', |
| 81 'ext/skia_utils_win.cc', | 81 'ext/skia_utils_win.cc', |
| 82 'ext/skia_utils_win.h', | 82 'ext/skia_utils_win.h', |
| 83 'ext/vector_canvas.h', | 83 'ext/vector_canvas.h', |
| 84 'ext/vector_platform_device_emf_win.cc', | 84 'ext/vector_platform_device_emf_win.cc', |
| 85 'ext/vector_platform_device_emf_win.h', | 85 'ext/vector_platform_device_emf_win.h', |
| 86 'ext/vector_platform_device_skia.cc', | |
| 87 'ext/vector_platform_device_skia.h', | |
| 88 ], | 86 ], |
| 89 'conditions': [ | 87 'conditions': [ |
| 90 [ 'OS == "android" and enable_printing == 0', { | 88 [ 'OS == "android" and enable_printing == 0', { |
| 91 'sources!': [ | 89 'sources!': [ |
| 92 'ext/skia_utils_base.cc', | 90 'ext/skia_utils_base.cc', |
| 93 ], | 91 ], |
| 94 }], | 92 }], |
| 95 [ 'enable_printing == 0', { | 93 [ 'enable_printing == 0', { |
| 96 'sources!': [ | 94 'sources!': [ |
| 97 'ext/vector_platform_device_skia.cc', | 95 'ext/vector_platform_device_skia.cc', |
| (...skipping 17 matching lines...) Expand all Loading... |
| 115 'target_conditions': [ | 113 'target_conditions': [ |
| 116 # Pull in specific linux files for android (which have been filtered out | 114 # Pull in specific linux files for android (which have been filtered out |
| 117 # by file name rules). | 115 # by file name rules). |
| 118 [ 'OS == "android"', { | 116 [ 'OS == "android"', { |
| 119 'sources/': [ | 117 'sources/': [ |
| 120 ['include', 'ext/platform_device_linux\\.cc$'], | 118 ['include', 'ext/platform_device_linux\\.cc$'], |
| 121 ], | 119 ], |
| 122 }], | 120 }], |
| 123 ], | 121 ], |
| 124 } | 122 } |
| OLD | NEW |