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

Side by Side Diff: base/gfx/SConscript

Issue 1853: Refactor the platform canvas unit test a bit so that it can be run on... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 3 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 | « base/build/base_unittests.vcproj ('k') | base/gfx/bitmap_platform_device.h » ('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) 2006-2008 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2006-2008 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 Import('env') 5 Import('env')
6 6
7 env = env.Clone() 7 env = env.Clone()
8 8
9 # Remove an inherited relative path that doesn't make sense anymore. This 9 # Remove an inherited relative path that doesn't make sense anymore. This
10 # makes sure we don't pull in the wrong version of time.h when building on 10 # makes sure we don't pull in the wrong version of time.h when building on
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 'font_utils.cc', 55 'font_utils.cc',
56 'native_theme.cc', 56 'native_theme.cc',
57 'skia_utils.cc', 57 'skia_utils.cc',
58 'uniscribe.cc', 58 'uniscribe.cc',
59 'vector_canvas.cc', 59 'vector_canvas.cc',
60 'vector_device.cc', 60 'vector_device.cc',
61 ]) 61 ])
62 62
63 if env['PLATFORM'] == 'win32': 63 if env['PLATFORM'] == 'win32':
64 input_files.extend([ 64 input_files.extend([
65 'bitmap_platform_device_win.cc', 65 'bitmap_platform_device.cc',
66 'platform_canvas_win.cc', 66 'platform_canvas_win.cc',
67 'platform_device_win.cc', 67 'platform_device_win.cc',
68 ]) 68 ])
69 elif env['PLATFORM'] == 'posix': 69 elif env['PLATFORM'] == 'posix':
70 input_files.extend([ 70 input_files.extend([
71 'bitmap_platform_device_linux.cc', 71 'bitmap_platform_device_linux.cc',
72 'platform_canvas_linux.cc', 72 'platform_canvas_linux.cc',
73 'platform_device_linux.cc', 73 'platform_device_linux.cc',
74 ]) 74 ])
75 75
76 env.ChromeStaticLibrary('base_gfx', input_files) 76 env.ChromeStaticLibrary('base_gfx', input_files)
77 77
OLDNEW
« no previous file with comments | « base/build/base_unittests.vcproj ('k') | base/gfx/bitmap_platform_device.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698