OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 'dependencies': [ | 103 'dependencies': [ |
104 '<(DEPTH)/base/base.gyp:base', | 104 '<(DEPTH)/base/base.gyp:base', |
105 '<(DEPTH)/crypto/crypto.gyp:crypto', | 105 '<(DEPTH)/crypto/crypto.gyp:crypto', |
106 '<(DEPTH)/net/net.gyp:net', | 106 '<(DEPTH)/net/net.gyp:net', |
107 '<(DEPTH)/skia/skia.gyp:skia', | 107 '<(DEPTH)/skia/skia.gyp:skia', |
108 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib', | 108 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib', |
109 '<(DEPTH)/ui/ui.gyp:ui', | 109 '<(DEPTH)/ui/ui.gyp:ui', |
110 '<(DEPTH)/webkit/common/user_agent/webkit_user_agent.gyp:user_agent', | 110 '<(DEPTH)/webkit/common/user_agent/webkit_user_agent.gyp:user_agent', |
111 '<(DEPTH)/webkit/renderer/webkit_renderer.gyp:webkit_renderer', | 111 '<(DEPTH)/webkit/renderer/webkit_renderer.gyp:webkit_renderer', |
112 'glue', | 112 'glue', |
113 'webkit_support_gfx', | |
114 ], | 113 ], |
115 'export_dependent_settings': [ | 114 'export_dependent_settings': [ |
116 '<(DEPTH)/base/base.gyp:base', | 115 '<(DEPTH)/base/base.gyp:base', |
117 ], | 116 ], |
118 'sources': [ | 117 'sources': [ |
119 '<(DEPTH)/webkit/browser/fileapi/mock_file_system_context.cc', | 118 '<(DEPTH)/webkit/browser/fileapi/mock_file_system_context.cc', |
120 '<(DEPTH)/webkit/browser/fileapi/mock_file_system_context.h', | 119 '<(DEPTH)/webkit/browser/fileapi/mock_file_system_context.h', |
121 '<(DEPTH)/webkit/browser/fileapi/mock_file_system_options.cc', | 120 '<(DEPTH)/webkit/browser/fileapi/mock_file_system_options.cc', |
122 '<(DEPTH)/webkit/browser/fileapi/mock_file_system_options.h', | 121 '<(DEPTH)/webkit/browser/fileapi/mock_file_system_options.h', |
123 '<(DEPTH)/webkit/browser/quota/mock_special_storage_policy.cc', | 122 '<(DEPTH)/webkit/browser/quota/mock_special_storage_policy.cc', |
124 '<(DEPTH)/webkit/browser/quota/mock_special_storage_policy.h', | 123 '<(DEPTH)/webkit/browser/quota/mock_special_storage_policy.h', |
125 '<(DEPTH)/webkit/support/mac/DumpRenderTreePasteboard.h', | 124 '<(DEPTH)/webkit/support/mac/DumpRenderTreePasteboard.h', |
126 '<(DEPTH)/webkit/support/mac/DumpRenderTreePasteboard.m', | 125 '<(DEPTH)/webkit/support/mac/DumpRenderTreePasteboard.m', |
127 '<(DEPTH)/webkit/support/mock_webclipboard_impl.cc', | 126 '<(DEPTH)/webkit/support/mock_webclipboard_impl.cc', |
128 '<(DEPTH)/webkit/support/mock_webclipboard_impl.h', | 127 '<(DEPTH)/webkit/support/mock_webclipboard_impl.h', |
129 '<(DEPTH)/webkit/support/test_shell_webblobregistry_impl.cc', | 128 '<(DEPTH)/webkit/support/test_shell_webblobregistry_impl.cc', |
130 '<(DEPTH)/webkit/support/test_shell_webblobregistry_impl.h', | 129 '<(DEPTH)/webkit/support/test_shell_webblobregistry_impl.h', |
131 ], | 130 ], |
132 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 131 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
133 'msvs_disabled_warnings': [ 4267, ], | 132 'msvs_disabled_warnings': [ 4267, ], |
134 }, | 133 }, |
135 | |
136 { | |
137 'target_name': 'webkit_support_gfx', | |
138 'type': 'static_library', | |
139 'variables': { 'enable_wexit_time_destructors': 1, }, | |
140 'dependencies': [ | |
141 '<(DEPTH)/third_party/libpng/libpng.gyp:libpng', | |
142 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib', | |
143 ], | |
144 'sources': [ | |
145 'webkit_support_gfx.h', | |
146 'webkit_support_gfx.cc', | |
147 ], | |
148 'include_dirs': [ | |
149 '<(DEPTH)', | |
150 ], | |
151 'conditions': [ | |
152 ['OS=="android"', { | |
153 'toolsets': ['target', 'host'], | |
154 }], | |
155 ], | |
156 }, | |
157 ], | 134 ], |
158 } | 135 } |
OLD | NEW |