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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 dest='$CHROME_SRC_DIR/net/build/net_perftests.vcproj', |
65 guid='{AAC78796-B9A2-4CD9-BF89-09B03E92BF73}', | 65 guid='{AAC78796-B9A2-4CD9-BF89-09B03E92BF73}', |
| 66 keyword='Win32Proj', |
66 dependencies = [ | 67 dependencies = [ |
67 '$BASE_DIR/build/base.vcproj', | 68 '$BASE_DIR/build/base.vcproj', |
68 '$NET_DIR/build/net.vcproj', | 69 '$NET_DIR/build/net.vcproj', |
69 '$MODP_B64_DIR/modp_b64.vcproj', | 70 '$MODP_B64_DIR/modp_b64.vcproj', |
70 '$ICU38_DIR/build/icu.vcproj', | 71 '$ICU38_DIR/build/icu.vcproj', |
71 '$TESTING_DIR/gtest.vcproj', | 72 '$TESTING_DIR/gtest.vcproj', |
72 '$GOOGLEURL_DIR/build/googleurl.vcproj', | 73 '$GOOGLEURL_DIR/build/googleurl.vcproj', |
73 '$SDCH_DIR/sdch.vcproj', | 74 '$SDCH_DIR/sdch.vcproj', |
74 ], | 75 ], |
75 # TODO: restore when we can derive all info, | 76 # TODO: restore when we can derive all info, |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 '$(SolutionDir)../build/debug.vsprops', | 108 '$(SolutionDir)../build/debug.vsprops', |
108 '$(SolutionDir)../testing/using_gtest.vsprops', | 109 '$(SolutionDir)../testing/using_gtest.vsprops', |
109 ]) | 110 ]) |
110 | 111 |
111 p.AddConfig('Release|Win32', | 112 p.AddConfig('Release|Win32', |
112 InheritedPropertySheets=[ | 113 InheritedPropertySheets=[ |
113 '$(SolutionDir)../build/common.vsprops', | 114 '$(SolutionDir)../build/common.vsprops', |
114 '$(SolutionDir)../build/release.vsprops', | 115 '$(SolutionDir)../build/release.vsprops', |
115 '$(SolutionDir)../testing/using_gtest.vsprops', | 116 '$(SolutionDir)../testing/using_gtest.vsprops', |
116 ]) | 117 ]) |
OLD | NEW |