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', 'env_res') | 5 Import('env', 'env_res') |
6 | 6 |
7 env = env.Clone() | 7 env = env.Clone() |
8 env_res = env_res.Clone() | 8 env_res = env_res.Clone() |
9 | 9 |
10 if env.Bit('windows'): | 10 if env.Bit('windows'): |
(...skipping 24 matching lines...) Expand all Loading... |
35 'base', | 35 'base', |
36 'base_gfx', | 36 'base_gfx', |
37 'browser', | 37 'browser', |
38 'googleurl', | 38 'googleurl', |
39 'net', | 39 'net', |
40 'sdch', | 40 'sdch', |
41 'skia', | 41 'skia', |
42 'gtest', | 42 'gtest', |
43 'V8Bindings', | 43 'V8Bindings', |
44 'WebCore', | 44 'WebCore', |
| 45 'WebKit', |
45 'WTF', | 46 'WTF', |
46 env['ICU_LIBS'], # TODO(sgk): '$ICU_LIBS' when scons is fixed | 47 env['ICU_LIBS'], # TODO(sgk): '$ICU_LIBS' when scons is fixed |
47 'libjpeg', | 48 'libjpeg', |
48 'libpng', | 49 'libpng', |
49 'libxslt', | 50 'libxslt', |
50 'modp_b64', | 51 'modp_b64', |
51 'zlib', | 52 'zlib', |
52 'sqlite', | 53 'sqlite', |
53 'JavaScriptCore_pcre', | 54 'JavaScriptCore_pcre', |
54 'default_plugin', | 55 'default_plugin', |
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
319 '$V8_DIR/tools/visual_studio/v8_snapshot.vcproj', | 320 '$V8_DIR/tools/visual_studio/v8_snapshot.vcproj', |
320 '$LIBPNG_DIR/libpng.vcproj', | 321 '$LIBPNG_DIR/libpng.vcproj', |
321 '$WEBKIT_DIR/build/glue/glue.vcproj', | 322 '$WEBKIT_DIR/build/glue/glue.vcproj', |
322 '$SKIA_DIR/skia.vcproj', | 323 '$SKIA_DIR/skia.vcproj', |
323 '$GOOGLEURL_DIR/build/googleurl.vcproj', | 324 '$GOOGLEURL_DIR/build/googleurl.vcproj', |
324 '$WEBKIT_DIR/activex_shim/activex_shim.vcproj', | 325 '$WEBKIT_DIR/activex_shim/activex_shim.vcproj', |
325 '$SDCH_DIR/sdch.vcproj', | 326 '$SDCH_DIR/sdch.vcproj', |
326 '$LIBXSLT_DIR/build/libxslt.vcproj', | 327 '$LIBXSLT_DIR/build/libxslt.vcproj', |
327 ], | 328 ], |
328 guid='{E6766F81-1FCD-4CD7-BC16-E36964A14867}') | 329 guid='{E6766F81-1FCD-4CD7-BC16-E36964A14867}') |
OLD | NEW |