OLD | NEW |
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 Loading... |
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 |
OLD | NEW |