| 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 12 matching lines...) Expand all Loading... |
| 23 CPPPATH = [ | 23 CPPPATH = [ |
| 24 '$BREAKPAD_DIR/src', | 24 '$BREAKPAD_DIR/src', |
| 25 '$WEBKIT_DIR/glue', | 25 '$WEBKIT_DIR/glue', |
| 26 '$GTEST_DIR/include', | 26 '$GTEST_DIR/include', |
| 27 ], | 27 ], |
| 28 LIBS = [ | 28 LIBS = [ |
| 29 'glue', | 29 'glue', |
| 30 'port', | 30 'port', |
| 31 'base', | 31 'base', |
| 32 'base_gfx', | 32 'base_gfx', |
| 33 'browser', |
| 33 'googleurl', | 34 'googleurl', |
| 34 'net', | 35 'net', |
| 35 'sdch', | 36 'sdch', |
| 36 'skia', | 37 'skia', |
| 37 'gtest', | 38 'gtest', |
| 38 'V8Bindings', | 39 'V8Bindings', |
| 39 'WebCore', | 40 'WebCore', |
| 40 'WTF', | 41 'WTF', |
| 41 env['ICU_LIBS'], # TODO(sgk): '$ICU_LIBS' when scons is fixed | 42 env['ICU_LIBS'], # TODO(sgk): '$ICU_LIBS' when scons is fixed |
| 42 'libjpeg', | 43 'libjpeg', |
| (...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 '$V8_DIR/tools/visual_studio/v8_snapshot.vcproj', | 315 '$V8_DIR/tools/visual_studio/v8_snapshot.vcproj', |
| 315 '$LIBPNG_DIR/libpng.vcproj', | 316 '$LIBPNG_DIR/libpng.vcproj', |
| 316 '$WEBKIT_DIR/build/glue/glue.vcproj', | 317 '$WEBKIT_DIR/build/glue/glue.vcproj', |
| 317 '$SKIA_DIR/skia.vcproj', | 318 '$SKIA_DIR/skia.vcproj', |
| 318 '$GOOGLEURL_DIR/build/googleurl.vcproj', | 319 '$GOOGLEURL_DIR/build/googleurl.vcproj', |
| 319 '$WEBKIT_DIR/activex_shim/activex_shim.vcproj', | 320 '$WEBKIT_DIR/activex_shim/activex_shim.vcproj', |
| 320 '$SDCH_DIR/sdch.vcproj', | 321 '$SDCH_DIR/sdch.vcproj', |
| 321 '$LIBXSLT_DIR/build/libxslt.vcproj', | 322 '$LIBXSLT_DIR/build/libxslt.vcproj', |
| 322 ], | 323 ], |
| 323 guid='{E6766F81-1FCD-4CD7-BC16-E36964A14867}') | 324 guid='{E6766F81-1FCD-4CD7-BC16-E36964A14867}') |
| OLD | NEW |