| 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 if env.Bit('windows'): | 9 if env.Bit('windows'): |
| 10 env.Append( | 10 env.Append( |
| (...skipping 816 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 827 env_p = env.Clone() | 827 env_p = env.Clone() |
| 828 env_p.Append(CCFLAGS='/Ylwebcore') | 828 env_p.Append(CCFLAGS='/Ylwebcore') |
| 829 pch, obj = env_p.PCH('$OBJ_ROOT/webkit/build/precompiled_webkit.cc') | 829 pch, obj = env_p.PCH('$OBJ_ROOT/webkit/build/precompiled_webkit.cc') |
| 830 env['PCH'] = pch | 830 env['PCH'] = pch |
| 831 env['PCHSTOP'] = 'precompiled_webkit.h' | 831 env['PCHSTOP'] = 'precompiled_webkit.h' |
| 832 env.Append(CCPCHFLAGS = ['/FIprecompiled_webkit.h']) | 832 env.Append(CCPCHFLAGS = ['/FIprecompiled_webkit.h']) |
| 833 input_files += [obj] | 833 input_files += [obj] |
| 834 | 834 |
| 835 env.ChromeStaticLibrary('WebCore', input_files) | 835 env.ChromeStaticLibrary('WebCore', input_files) |
| 836 | 836 |
| 837 env.ChromeMSVSProject('$WEBKIT_DIR/build/WebCore/WebCore.vcproj', |
| 838 dependencies = [ |
| 839 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', |
| 840 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', |
| 841 '$LIBXML_DIR/build/libxml_config.vcproj', |
| 842 '$LIBXSLT_DIR/build/libxslt_config.vcproj', |
| 843 '$SQLITE_DIR/sqlite.vcproj', |
| 844 ], |
| 845 guid='{1C16337B-ACF3-4D03-AA90-851C5B5EADA6}') |
| OLD | NEW |