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

Side by Side Diff: gfx/gfx.gyp

Issue 6254004: Move more web widgets painting from webkit to chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: for tony's comments #1 Created 9 years, 11 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'grit_info_cmd': ['python', '../tools/grit/grit_info.py', 8 'grit_info_cmd': ['python', '../tools/grit/grit_info.py',
9 '<@(grit_defines)'], 9 '<@(grit_defines)'],
10 'grit_cmd': ['python', '../tools/grit/grit.py'], 10 'grit_cmd': ['python', '../tools/grit/grit.py'],
11 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/gfx', 11 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/gfx',
12 }, 12 },
13 'targets': [ 13 'targets': [
14 { 14 {
15 'target_name': 'gfx_unittests', 15 'target_name': 'gfx_unittests',
16 'type': 'executable', 16 'type': 'executable',
17 'msvs_guid': 'C8BD2821-EAE5-4AC6-A0E4-F82CAC2956CC', 17 'msvs_guid': 'C8BD2821-EAE5-4AC6-A0E4-F82CAC2956CC',
18 'dependencies': [ 18 'dependencies': [
19 'gfx', 19 'gfx',
20 'gfx_resources', 20 'gfx_resources',
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 'codec/jpeg_codec.h', 103 'codec/jpeg_codec.h',
104 'codec/png_codec.cc', 104 'codec/png_codec.cc',
105 'codec/png_codec.h', 105 'codec/png_codec.h',
106 'color_utils.cc', 106 'color_utils.cc',
107 'color_utils.h', 107 'color_utils.h',
108 'favicon_size.h', 108 'favicon_size.h',
109 'font.h', 109 'font.h',
110 'font.cc', 110 'font.cc',
111 'gfx_paths.cc', 111 'gfx_paths.cc',
112 'gfx_paths.h', 112 'gfx_paths.h',
113 'gfx_module.cc',
114 'gfx_module.h',
113 'insets.cc', 115 'insets.cc',
114 'insets.h', 116 'insets.h',
115 'native_widget_types.h', 117 'native_widget_types.h',
116 'path.cc', 118 'path.cc',
117 'path.h', 119 'path.h',
118 'path_gtk.cc', 120 'path_gtk.cc',
119 'path_win.cc', 121 'path_win.cc',
120 'platform_font.h', 122 'platform_font.h',
121 'platform_font_gtk.h', 123 'platform_font_gtk.h',
122 'platform_font_gtk.cc', 124 'platform_font_gtk.cc',
(...skipping 28 matching lines...) Expand all
151 'icon_util.cc', 153 'icon_util.cc',
152 'icon_util.h', 154 'icon_util.h',
153 'native_theme_win.cc', 155 'native_theme_win.cc',
154 'native_theme_win.h', 156 'native_theme_win.h',
155 'win_util.cc', 157 'win_util.cc',
156 'win_util.h', 158 'win_util.h',
157 ], 159 ],
158 'include_dirs': [ 160 'include_dirs': [
159 '..', 161 '..',
160 '<(DEPTH)/third_party/wtl/include', 162 '<(DEPTH)/third_party/wtl/include',
161 ], 163 ],
162 }], 164 }],
163 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { 165 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', {
164 'dependencies': [ 166 'dependencies': [
165 # font_gtk.cc uses fontconfig. 167 # font_gtk.cc uses fontconfig.
166 # TODO(evanm): I think this is wrong; it should just use GTK. 168 # TODO(evanm): I think this is wrong; it should just use GTK.
167 '../build/linux/system.gyp:fontconfig', 169 '../build/linux/system.gyp:fontconfig',
168 '../build/linux/system.gyp:gtk', 170 '../build/linux/system.gyp:gtk',
169 ], 171 ],
170 'sources': [ 172 'sources': [
171 'gtk_native_view_id_manager.cc', 173 'gtk_native_view_id_manager.cc',
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 'include_dirs': [ 213 'include_dirs': [
212 '<(grit_out_dir)', 214 '<(grit_out_dir)',
213 ], 215 ],
214 }, 216 },
215 'conditions': [ 217 'conditions': [
216 ['OS=="win"', { 218 ['OS=="win"', {
217 'dependencies': ['../build/win/system.gyp:cygwin'], 219 'dependencies': ['../build/win/system.gyp:cygwin'],
218 }], 220 }],
219 ], 221 ],
220 }, 222 },
221 223
222 ], 224 ],
223 } 225 }
224 226
225 # Local Variables: 227 # Local Variables:
226 # tab-width:2 228 # tab-width:2
227 # indent-tabs-mode:nil 229 # indent-tabs-mode:nil
228 # End: 230 # End:
229 # vim: set expandtab tabstop=2 shiftwidth=2: 231 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « chrome/renderer/renderer_main.cc ('k') | gfx/gfx_module.h » ('j') | gfx/native_theme_linux.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698