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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 'ext/SkDiscardableMemory_chrome.cc', | 70 'ext/SkDiscardableMemory_chrome.cc', |
71 'ext/SkMemory_new_handler.cpp', | 71 'ext/SkMemory_new_handler.cpp', |
72 'ext/skia_utils_base.cc', | 72 'ext/skia_utils_base.cc', |
73 'ext/skia_utils_base.h', | 73 'ext/skia_utils_base.h', |
74 'ext/skia_utils_ios.mm', | 74 'ext/skia_utils_ios.mm', |
75 'ext/skia_utils_ios.h', | 75 'ext/skia_utils_ios.h', |
76 'ext/skia_utils_mac.mm', | 76 'ext/skia_utils_mac.mm', |
77 'ext/skia_utils_mac.h', | 77 'ext/skia_utils_mac.h', |
78 'ext/skia_utils_win.cc', | 78 'ext/skia_utils_win.cc', |
79 'ext/skia_utils_win.h', | 79 'ext/skia_utils_win.h', |
80 'ext/vector_canvas.h', | |
81 'ext/vector_platform_device_emf_win.cc', | |
82 'ext/vector_platform_device_emf_win.h', | |
83 ], | 80 ], |
84 'conditions': [ | 81 'conditions': [ |
85 [ 'OS == "android" and ' | 82 [ 'OS == "android" and ' |
86 'enable_basic_printing==0 and enable_print_preview==0', { | 83 'enable_basic_printing==0 and enable_print_preview==0', { |
87 'sources!': [ | 84 'sources!': [ |
88 'ext/skia_utils_base.cc', | 85 'ext/skia_utils_base.cc', |
89 ], | 86 ], |
90 }], | 87 }], |
91 ['OS == "ios"', { | 88 ['OS == "ios"', { |
92 'dependencies!': [ | 89 'dependencies!': [ |
(...skipping 10 matching lines...) Expand all Loading... |
103 'target_conditions': [ | 100 'target_conditions': [ |
104 # Pull in specific linux files for android (which have been filtered out | 101 # Pull in specific linux files for android (which have been filtered out |
105 # by file name rules). | 102 # by file name rules). |
106 [ 'OS == "android"', { | 103 [ 'OS == "android"', { |
107 'sources/': [ | 104 'sources/': [ |
108 ['include', 'ext/platform_device_linux\\.cc$'], | 105 ['include', 'ext/platform_device_linux\\.cc$'], |
109 ], | 106 ], |
110 }], | 107 }], |
111 ], | 108 ], |
112 } | 109 } |
OLD | NEW |