OLD | NEW |
1 # Copyright (c) 2008 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 perf_tests{,.exe} executable. | 6 Configuration for building the perf_tests{,.exe} executable. |
7 """ | 7 """ |
8 | 8 |
9 Import('env') | 9 Import('env') |
10 | 10 |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 remove_files = [ | 69 remove_files = [ |
70 'url_parse_perftest.cc', | 70 'url_parse_perftest.cc', |
71 '$CHROME_DIR/browser/visitedlink_master$OBJSUFFIX', | 71 '$CHROME_DIR/browser/visitedlink_master$OBJSUFFIX', |
72 '$CHROME_DIR/browser/visitedlink_perftest.cc', | 72 '$CHROME_DIR/browser/visitedlink_perftest.cc', |
73 ] | 73 ] |
74 for file in remove_files: | 74 for file in remove_files: |
75 input_files.remove(file) | 75 input_files.remove(file) |
76 | 76 |
77 if not env.Bit('mac'): | 77 if not env.Bit('mac'): |
78 env.ChromeTestProgram('perf_tests', input_files) | 78 env.ChromeTestProgram('perf_tests', input_files) |
| 79 |
| 80 env.ChromeMSVSProject('$CHROME_DIR/test/perf/perftests.vcproj', |
| 81 name='perf_tests', |
| 82 dependencies = [ |
| 83 '$BASE_DIR/build/base.vcproj', |
| 84 '$WEBKIT_DIR/build/WebCore/WebCore.vcproj', |
| 85 '$CHROME_DIR/plugin/plugin.vcproj', |
| 86 '$LIBJPEG_DIR/libjpeg.vcproj', |
| 87 '$BZIP2_DIR/bzip2.vcproj', |
| 88 '$NET_DIR/build/net.vcproj', |
| 89 '$WEBKIT_DIR/build/JavaScriptCore/JavaScriptCore_pcre.vcproj
', |
| 90 '$WEBKIT_DIR/build/port/port.vcproj', |
| 91 '$CHROME_DIR/browser/debugger/debugger.vcproj', |
| 92 '$WEBKIT_DIR/default_plugin/default_plugin.vcproj', |
| 93 '$CHROME_DIR/browser/browser.vcproj', |
| 94 '$WEBKIT_DIR/build/V8Bindings/V8Bindings.vcproj', |
| 95 '$SQLITE_DIR/sqlite.vcproj', |
| 96 '$CHROME_DIR/views/views.vcproj', |
| 97 '$MODP_B64_DIR/modp_b64.vcproj', |
| 98 '$ZLIB_DIR/zlib.vcproj', |
| 99 '$CHROME_DIR/common/common.vcproj', |
| 100 '$ICU38_DIR/build/icu.vcproj', |
| 101 '$CHROME_DIR/renderer/renderer.vcproj', |
| 102 '$BASE_DIR/build/base_gfx.vcproj', |
| 103 '$WEBKIT_DIR/build/JavaScriptCore/WTF.vcproj', |
| 104 '$TESTING_DIR/gtest.vcproj', |
| 105 '$V8_DIR/tools/visual_studio/v8_snapshot.vcproj', |
| 106 '$LIBPNG_DIR/libpng.vcproj', |
| 107 '$WEBKIT_DIR/build/glue/glue.vcproj', |
| 108 '$SKIA_DIR/skia.vcproj', |
| 109 '$CHROME_DIR/third_party/hunspell/hunspell.vcproj', |
| 110 '$GOOGLEURL_DIR/build/googleurl.vcproj', |
| 111 '$CHROME_DIR/installer/util/util.vcproj', |
| 112 '$WEBKIT_DIR/activex_shim/activex_shim.vcproj', |
| 113 '$SDCH_DIR/sdch.vcproj', |
| 114 '$CHROME_DIR/browser/views/browser_views.vcproj', |
| 115 '$LIBXSLT_DIR/build/libxslt.vcproj', |
| 116 ], |
| 117 guid='{9055E088-25C6-47FD-87D5-D9DD9FD75C9F}') |
OLD | NEW |