| 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 11 matching lines...) Expand all Loading... |
| 22 '$BZIP2_DIR/using_bzip2.scons', | 22 '$BZIP2_DIR/using_bzip2.scons', |
| 23 '$CHROME_SRC_DIR/build/using_v8.scons', | 23 '$CHROME_SRC_DIR/build/using_v8.scons', |
| 24 '$LIBJPEG_DIR/using_libjpeg.scons', | 24 '$LIBJPEG_DIR/using_libjpeg.scons', |
| 25 '$LIBPNG_DIR/using_libpng.scons', | 25 '$LIBPNG_DIR/using_libpng.scons', |
| 26 '$LIBXML_DIR/using_libxml.scons', | 26 '$LIBXML_DIR/using_libxml.scons', |
| 27 '$LIBXSLT_DIR/using_libxslt.scons', | 27 '$LIBXSLT_DIR/using_libxslt.scons', |
| 28 '$MEDIA_DIR/using_media.scons', | 28 '$MEDIA_DIR/using_media.scons', |
| 29 '$SDCH_DIR/using_sdch.scons', | 29 '$SDCH_DIR/using_sdch.scons', |
| 30 '$SKIA_DIR/using_skia.scons', | 30 '$SKIA_DIR/using_skia.scons', |
| 31 '$ZLIB_DIR/using_zlib.scons', | 31 '$ZLIB_DIR/using_zlib.scons', |
| 32 |
| 33 # TODO(port): we should have a using_browser.scons that pulls in hunspell |
| 34 # for itself. |
| 35 '$CHROME_DIR/third_party/hunspell/using_hunspell.scons', |
| 32 ]) | 36 ]) |
| 33 | 37 |
| 34 env.Prepend( | 38 env.Prepend( |
| 35 CPPDEFINES = [ | 39 CPPDEFINES = [ |
| 36 'PERF_TEST', | 40 'PERF_TEST', |
| 37 ], | 41 ], |
| 38 LIBS = [ | 42 LIBS = [ |
| 39 'browser', | 43 'browser', |
| 40 'common', | 44 'common', |
| 41 'sqlite', | 45 'sqlite', |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 p.AddConfig('Release|Win32', | 207 p.AddConfig('Release|Win32', |
| 204 InheritedPropertySheets=[ | 208 InheritedPropertySheets=[ |
| 205 '$(SolutionDir)../build/common.vsprops', | 209 '$(SolutionDir)../build/common.vsprops', |
| 206 '$(SolutionDir)../build/release.vsprops', | 210 '$(SolutionDir)../build/release.vsprops', |
| 207 '$(SolutionDir)../third_party/icu38/build/using_icu.vsprops', | 211 '$(SolutionDir)../third_party/icu38/build/using_icu.vsprops', |
| 208 ('$(SolutionDir)../' | 212 ('$(SolutionDir)../' |
| 209 + 'third_party/libxml/build/using_libxml.vsprops'), | 213 + 'third_party/libxml/build/using_libxml.vsprops'), |
| 210 '$(SolutionDir)../testing/using_gtest.vsprops', | 214 '$(SolutionDir)../testing/using_gtest.vsprops', |
| 211 '$(SolutionDir)../skia/using_skia.vsprops', | 215 '$(SolutionDir)../skia/using_skia.vsprops', |
| 212 ]) | 216 ]) |
| OLD | NEW |