| 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 env.Prepend( | 9 env.Prepend( |
| 10 CPPPATH = [ | 10 CPPPATH = [ |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 'gtest/include/gtest/internal/gtest-port.h', | 36 'gtest/include/gtest/internal/gtest-port.h', |
| 37 'gtest/include/gtest/gtest-spi.h', | 37 'gtest/include/gtest/gtest-spi.h', |
| 38 'gtest/include/gtest/internal/gtest-string.h', | 38 'gtest/include/gtest/internal/gtest-string.h', |
| 39 'gtest/src/gtest.cc', | 39 'gtest/src/gtest.cc', |
| 40 'gtest/include/gtest/gtest.h', | 40 'gtest/include/gtest/gtest.h', |
| 41 'gtest/include/gtest/gtest_pred_impl.h', | 41 'gtest/include/gtest/gtest_pred_impl.h', |
| 42 'gtest/include/gtest/gtest_prod.h', | 42 'gtest/include/gtest/gtest_prod.h', |
| 43 'multiprocess_func_list.cc', | 43 'multiprocess_func_list.cc', |
| 44 ]) | 44 ]) |
| 45 | 45 |
| 46 env.ChromeStaticLibrary('gtest', input_files) | 46 env.ChromeLibrary('gtest', input_files) |
| 47 | 47 |
| 48 p = env.ChromeMSVSProject('gtest.vcproj', | 48 p = env.ChromeMSVSProject('gtest.vcproj', |
| 49 guid='{BFE8E2A7-3B3B-43B0-A994-3058B852DB8B}', | 49 guid='{BFE8E2A7-3B3B-43B0-A994-3058B852DB8B}', |
| 50 files=input_files, | 50 files=input_files, |
| 51 tools = [ | 51 tools = [ |
| 52 'VCPreBuildEventTool', | 52 'VCPreBuildEventTool', |
| 53 'VCCustomBuildTool', | 53 'VCCustomBuildTool', |
| 54 'VCXMLDataGeneratorTool', | 54 'VCXMLDataGeneratorTool', |
| 55 'VCWebServiceProxyGeneratorTool', | 55 'VCWebServiceProxyGeneratorTool', |
| 56 'VCMIDLTool', | 56 'VCMIDLTool', |
| (...skipping 21 matching lines...) Expand all Loading... |
| 78 InheritedPropertySheets = [ | 78 InheritedPropertySheets = [ |
| 79 '$(SolutionDir)../build/release.vsprops', | 79 '$(SolutionDir)../build/release.vsprops', |
| 80 './using_gtest.vsprops', | 80 './using_gtest.vsprops', |
| 81 ]) | 81 ]) |
| 82 | 82 |
| 83 env.AlwaysBuild(p) | 83 env.AlwaysBuild(p) |
| 84 | 84 |
| 85 i = env.Command('$CHROME_SRC_DIR/testing/gtest.vcproj', p, | 85 i = env.Command('$CHROME_SRC_DIR/testing/gtest.vcproj', p, |
| 86 Copy('$TARGET', '$SOURCE')) | 86 Copy('$TARGET', '$SOURCE')) |
| 87 Alias('msvs', i) | 87 Alias('msvs', i) |
| OLD | NEW |