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

Side by Side Diff: chrome/chrome.gyp

Issue 113443: ChromeCanvas->gfx::Canvas (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 7 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
« no previous file with comments | « chrome/browser/views/toolbar_view.cc ('k') | chrome/plugin/webplugin_proxy.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 # Mac NOTE: at the start of the conditions block we default some vars 8 # Mac NOTE: at the start of the conditions block we default some vars
9 # that control features based on the branding, this way each place that 9 # that control features based on the branding, this way each place that
10 # needs to know about the feature isn't hard coded to the branding type. 10 # needs to know about the feature isn't hard coded to the branding type.
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 'third_party/wtl/include', 171 'third_party/wtl/include',
172 ], 172 ],
173 'sources': [ 173 'sources': [
174 # All .cc, .h, and .mm files under app/ except for tests. 174 # All .cc, .h, and .mm files under app/ except for tests.
175 '../app/animation.cc', 175 '../app/animation.cc',
176 '../app/animation.h', 176 '../app/animation.h',
177 '../app/app_switches.h', 177 '../app/app_switches.h',
178 '../app/app_switches.cc', 178 '../app/app_switches.cc',
179 '../app/drag_drop_types.cc', 179 '../app/drag_drop_types.cc',
180 '../app/drag_drop_types.h', 180 '../app/drag_drop_types.h',
181 '../app/gfx/chrome_canvas.cc', 181 '../app/gfx/canvas.cc',
182 '../app/gfx/chrome_canvas.h', 182 '../app/gfx/canvas.h',
183 '../app/gfx/chrome_canvas_linux.cc', 183 '../app/gfx/canvas_linux.cc',
184 '../app/gfx/chrome_canvas_win.cc', 184 '../app/gfx/canvas_win.cc',
185 '../app/gfx/chrome_font.h', 185 '../app/gfx/font.h',
186 '../app/gfx/chrome_font_gtk.cc', 186 '../app/gfx/font_gtk.cc',
187 '../app/gfx/chrome_font_mac.mm', 187 '../app/gfx/font_mac.mm',
188 '../app/gfx/chrome_font_skia.cc', 188 '../app/gfx/font_skia.cc',
189 '../app/gfx/chrome_font_win.cc', 189 '../app/gfx/font_win.cc',
190 '../app/gfx/color_utils.cc', 190 '../app/gfx/color_utils.cc',
191 '../app/gfx/color_utils.h', 191 '../app/gfx/color_utils.h',
192 '../app/gfx/favicon_size.h', 192 '../app/gfx/favicon_size.h',
193 '../app/gfx/gtk_util.cc', 193 '../app/gfx/gtk_util.cc',
194 '../app/gfx/gtk_util.h', 194 '../app/gfx/gtk_util.h',
195 '../app/gfx/icon_util.cc', 195 '../app/gfx/icon_util.cc',
196 '../app/gfx/icon_util.h', 196 '../app/gfx/icon_util.h',
197 '../app/gfx/insets.h', 197 '../app/gfx/insets.h',
198 '../app/gfx/path_gtk.cc', 198 '../app/gfx/path_gtk.cc',
199 '../app/gfx/path_win.cc', 199 '../app/gfx/path_win.cc',
(...skipping 23 matching lines...) Expand all
223 '../app/win_util.h', 223 '../app/win_util.h',
224 ], 224 ],
225 'direct_dependent_settings': { 225 'direct_dependent_settings': {
226 'include_dirs': [ 226 'include_dirs': [
227 '..', 227 '..',
228 ], 228 ],
229 }, 229 },
230 'conditions': [ 230 'conditions': [
231 ['OS=="linux"', { 231 ['OS=="linux"', {
232 'dependencies': [ 232 'dependencies': [
233 # chrome_font_gtk.cc uses fontconfig. 233 # font_gtk.cc uses fontconfig.
234 # TODO(evanm): I think this is wrong; it should just use GTK. 234 # TODO(evanm): I think this is wrong; it should just use GTK.
235 '../build/linux/system.gyp:fontconfig', 235 '../build/linux/system.gyp:fontconfig',
236 '../build/linux/system.gyp:gtk', 236 '../build/linux/system.gyp:gtk',
237 ], 237 ],
238 }], 238 }],
239 ['OS!="win"', { 239 ['OS!="win"', {
240 'sources!': [ 240 'sources!': [
241 '../app/drag_drop_types.cc', 241 '../app/drag_drop_types.cc',
242 '../app/drag_drop_types.h', 242 '../app/drag_drop_types.h',
243 '../app/gfx/icon_util.cc', 243 '../app/gfx/icon_util.cc',
(...skipping 2573 matching lines...) Expand 10 before | Expand all | Expand 10 after
2817 'browser/views/keyword_editor_view_unittest.cc', 2817 'browser/views/keyword_editor_view_unittest.cc',
2818 'browser/visitedlink_unittest.cc', 2818 'browser/visitedlink_unittest.cc',
2819 'browser/webdata/web_database_unittest.cc', 2819 'browser/webdata/web_database_unittest.cc',
2820 'browser/window_sizer_unittest.cc', 2820 'browser/window_sizer_unittest.cc',
2821 '../app/animation_unittest.cc', 2821 '../app/animation_unittest.cc',
2822 'common/bzip2_unittest.cc', 2822 'common/bzip2_unittest.cc',
2823 'common/chrome_plugin_unittest.cc', 2823 'common/chrome_plugin_unittest.cc',
2824 'common/extensions/url_pattern_unittest.cc', 2824 'common/extensions/url_pattern_unittest.cc',
2825 'common/extensions/user_script_unittest.cc', 2825 'common/extensions/user_script_unittest.cc',
2826 'common/file_descriptor_set_unittest.cc', 2826 'common/file_descriptor_set_unittest.cc',
2827 '../app/gfx/chrome_font_unittest.cc', 2827 '../app/gfx/font_unittest.cc',
2828 'common/gfx/emf_unittest.cc', 2828 'common/gfx/emf_unittest.cc',
2829 '../app/gfx/icon_util_unittest.cc', 2829 '../app/gfx/icon_util_unittest.cc',
2830 '../app/gfx/text_elider_unittest.cc', 2830 '../app/gfx/text_elider_unittest.cc',
2831 'common/important_file_writer_unittest.cc', 2831 'common/important_file_writer_unittest.cc',
2832 'common/ipc_message_unittest.cc', 2832 'common/ipc_message_unittest.cc',
2833 'common/ipc_sync_channel_unittest.cc', 2833 'common/ipc_sync_channel_unittest.cc',
2834 'common/ipc_sync_message_unittest.cc', 2834 'common/ipc_sync_message_unittest.cc',
2835 'common/ipc_sync_message_unittest.h', 2835 'common/ipc_sync_message_unittest.h',
2836 'common/json_value_serializer_unittest.cc', 2836 'common/json_value_serializer_unittest.cc',
2837 '../app/l10n_util_unittest.cc', 2837 '../app/l10n_util_unittest.cc',
(...skipping 777 matching lines...) Expand 10 before | Expand all | Expand 10 after
3615 # Use outputs of this action as inputs for the main target build. 3615 # Use outputs of this action as inputs for the main target build.
3616 # Seems as a misnomer but makes this happy on Linux (scons). 3616 # Seems as a misnomer but makes this happy on Linux (scons).
3617 'process_outputs_as_sources': 1, 3617 'process_outputs_as_sources': 1,
3618 }, 3618 },
3619 ], # 'actions' 3619 ], # 'actions'
3620 }, 3620 },
3621 ] 3621 ]
3622 }], 3622 }],
3623 ], # 'conditions' 3623 ], # 'conditions'
3624 } 3624 }
OLDNEW
« no previous file with comments | « chrome/browser/views/toolbar_view.cc ('k') | chrome/plugin/webplugin_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698