| 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 __doc__ = """ | 5 __doc__ = """ |
| 6 Configuration for building the net_perftests{,.exe} executable. | 6 Configuration for building the net_perftests{,.exe} executable. |
| 7 """ | 7 """ |
| 8 | 8 |
| 9 Import('env') | 9 Import('env') |
| 10 | 10 |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 | 54 |
| 55 if not env.Bit('mac'): | 55 if not env.Bit('mac'): |
| 56 env.ChromeTestProgram('net_perftests', input_files) | 56 env.ChromeTestProgram('net_perftests', input_files) |
| 57 | 57 |
| 58 env.ChromeMSVSProject('$NET_DIR/build/net_perftests.vcproj', | 58 env.ChromeMSVSProject('$NET_DIR/build/net_perftests.vcproj', |
| 59 guid='{AAC78796-B9A2-4CD9-BF89-09B03E92BF73}') | 59 guid='{AAC78796-B9A2-4CD9-BF89-09B03E92BF73}') |
| 60 | 60 |
| 61 # TODO######################################################################## | 61 # TODO######################################################################## |
| 62 | 62 |
| 63 p = env.ChromeMSVSProject('$NET_DIR/build/net_perftests.vcproj', | 63 p = env.ChromeMSVSProject('$NET_DIR/build/net_perftests.vcproj', |
| 64 dest='$CHROME_SRC_DIR/net/build/net_perftests.vcproj', |
| 64 guid='{AAC78796-B9A2-4CD9-BF89-09B03E92BF73}', | 65 guid='{AAC78796-B9A2-4CD9-BF89-09B03E92BF73}', |
| 65 dependencies = [ | 66 dependencies = [ |
| 66 '$BASE_DIR/build/base.vcproj', | 67 '$BASE_DIR/build/base.vcproj', |
| 67 '$NET_DIR/build/net.vcproj', | 68 '$NET_DIR/build/net.vcproj', |
| 68 '$MODP_B64_DIR/modp_b64.vcproj', | 69 '$MODP_B64_DIR/modp_b64.vcproj', |
| 69 '$ICU38_DIR/build/icu.vcproj', | 70 '$ICU38_DIR/build/icu.vcproj', |
| 70 '$TESTING_DIR/gtest.vcproj', | 71 '$TESTING_DIR/gtest.vcproj', |
| 71 '$GOOGLEURL_DIR/build/googleurl.vcproj', | 72 '$GOOGLEURL_DIR/build/googleurl.vcproj', |
| 72 '$SDCH_DIR/sdch.vcproj', | 73 '$SDCH_DIR/sdch.vcproj', |
| 73 ], | 74 ], |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 '$(SolutionDir)../build/debug.vsprops', | 107 '$(SolutionDir)../build/debug.vsprops', |
| 107 '$(SolutionDir)../testing/using_gtest.vsprops', | 108 '$(SolutionDir)../testing/using_gtest.vsprops', |
| 108 ]) | 109 ]) |
| 109 | 110 |
| 110 p.AddConfig('Release|Win32', | 111 p.AddConfig('Release|Win32', |
| 111 InheritedPropertySheets=[ | 112 InheritedPropertySheets=[ |
| 112 '$(SolutionDir)../build/common.vsprops', | 113 '$(SolutionDir)../build/common.vsprops', |
| 113 '$(SolutionDir)../build/release.vsprops', | 114 '$(SolutionDir)../build/release.vsprops', |
| 114 '$(SolutionDir)../testing/using_gtest.vsprops', | 115 '$(SolutionDir)../testing/using_gtest.vsprops', |
| 115 ]) | 116 ]) |
| 116 | |
| 117 env.AlwaysBuild(p) | |
| 118 | |
| 119 i = env.Command('$CHROME_SRC_DIR/net/build/net_perftests.vcproj', p, | |
| 120 Copy('$TARGET', '$SOURCE')) | |
| 121 Alias('msvs', i) | |
| OLD | NEW |