Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1354)

Side by Side Diff: webkit/support/webkit_support.gypi

Issue 21202003: Move simple png encoding for image_diff into tools/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
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/hyphen/hyphen.gyp:hyphen', 108 '<(DEPTH)/third_party/hyphen/hyphen.gyp:hyphen',
109 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib', 109 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib',
110 '<(DEPTH)/ui/ui.gyp:ui', 110 '<(DEPTH)/ui/ui.gyp:ui',
111 '<(DEPTH)/webkit/common/user_agent/webkit_user_agent.gyp:user_agent', 111 '<(DEPTH)/webkit/common/user_agent/webkit_user_agent.gyp:user_agent',
112 '<(DEPTH)/webkit/renderer/webkit_renderer.gyp:webkit_renderer', 112 '<(DEPTH)/webkit/renderer/webkit_renderer.gyp:webkit_renderer',
113 'glue', 113 'glue',
114 'webkit_support_gfx',
115 ], 114 ],
116 'export_dependent_settings': [ 115 'export_dependent_settings': [
117 '<(DEPTH)/base/base.gyp:base', 116 '<(DEPTH)/base/base.gyp:base',
118 ], 117 ],
119 'sources': [ 118 'sources': [
120 '<(DEPTH)/webkit/browser/fileapi/mock_file_system_context.cc', 119 '<(DEPTH)/webkit/browser/fileapi/mock_file_system_context.cc',
121 '<(DEPTH)/webkit/browser/fileapi/mock_file_system_context.h', 120 '<(DEPTH)/webkit/browser/fileapi/mock_file_system_context.h',
122 '<(DEPTH)/webkit/browser/fileapi/mock_file_system_options.cc', 121 '<(DEPTH)/webkit/browser/fileapi/mock_file_system_options.cc',
123 '<(DEPTH)/webkit/browser/fileapi/mock_file_system_options.h', 122 '<(DEPTH)/webkit/browser/fileapi/mock_file_system_options.h',
124 '<(DEPTH)/webkit/browser/quota/mock_special_storage_policy.cc', 123 '<(DEPTH)/webkit/browser/quota/mock_special_storage_policy.cc',
125 '<(DEPTH)/webkit/browser/quota/mock_special_storage_policy.h', 124 '<(DEPTH)/webkit/browser/quota/mock_special_storage_policy.h',
126 '<(DEPTH)/webkit/support/mac/DumpRenderTreePasteboard.h', 125 '<(DEPTH)/webkit/support/mac/DumpRenderTreePasteboard.h',
127 '<(DEPTH)/webkit/support/mac/DumpRenderTreePasteboard.m', 126 '<(DEPTH)/webkit/support/mac/DumpRenderTreePasteboard.m',
128 '<(DEPTH)/webkit/support/mock_webclipboard_impl.cc', 127 '<(DEPTH)/webkit/support/mock_webclipboard_impl.cc',
129 '<(DEPTH)/webkit/support/mock_webclipboard_impl.h', 128 '<(DEPTH)/webkit/support/mock_webclipboard_impl.h',
130 '<(DEPTH)/webkit/support/test_shell_webblobregistry_impl.cc', 129 '<(DEPTH)/webkit/support/test_shell_webblobregistry_impl.cc',
131 '<(DEPTH)/webkit/support/test_shell_webblobregistry_impl.h', 130 '<(DEPTH)/webkit/support/test_shell_webblobregistry_impl.h',
132 '<(DEPTH)/webkit/mocks/mock_webhyphenator.cc', 131 '<(DEPTH)/webkit/mocks/mock_webhyphenator.cc',
133 '<(DEPTH)/webkit/mocks/mock_webhyphenator.h', 132 '<(DEPTH)/webkit/mocks/mock_webhyphenator.h',
134 ], 133 ],
135 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 134 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
136 'msvs_disabled_warnings': [ 4267, ], 135 'msvs_disabled_warnings': [ 4267, ],
137 }, 136 },
138
139 {
140 'target_name': 'webkit_support_gfx',
141 'type': 'static_library',
142 'variables': { 'enable_wexit_time_destructors': 1, },
143 'dependencies': [
144 '<(DEPTH)/third_party/libpng/libpng.gyp:libpng',
145 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib',
146 ],
147 'sources': [
148 'webkit_support_gfx.h',
149 'webkit_support_gfx.cc',
150 ],
151 'include_dirs': [
152 '<(DEPTH)',
153 ],
154 'conditions': [
155 ['OS=="android"', {
156 'toolsets': ['target', 'host'],
157 }],
158 ],
159 },
160 ], 137 ],
161 } 138 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698