| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 'sqlite', | 45 'sqlite', |
| 46 | 46 |
| 47 'JavaScriptCore_pcre', | 47 'JavaScriptCore_pcre', |
| 48 'V8Bindings', | 48 'V8Bindings', |
| 49 'WTF', | 49 'WTF', |
| 50 'WebCore', | 50 'WebCore', |
| 51 'debugger', | 51 'debugger', |
| 52 'glue', | 52 'glue', |
| 53 'port', | 53 'port', |
| 54 'renderer', | 54 'renderer', |
| 55 |
| 56 'X11', |
| 57 'Xrender', |
| 58 'Xext', |
| 55 ], | 59 ], |
| 56 ) | 60 ) |
| 57 | 61 |
| 58 if env.Bit('posix'): | 62 if env.Bit('posix'): |
| 59 env.SConscript([ | 63 env.SConscript([ |
| 60 '$LIBEVENT_DIR/using_libevent.scons', | 64 '$LIBEVENT_DIR/using_libevent.scons', |
| 61 ], {'env':env}) | 65 ], {'env':env}) |
| 62 | 66 |
| 63 if env.Bit('windows'): | 67 if env.Bit('windows'): |
| 64 env.Prepend( | 68 env.Prepend( |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 p.AddConfig('Release|Win32', | 211 p.AddConfig('Release|Win32', |
| 208 InheritedPropertySheets=[ | 212 InheritedPropertySheets=[ |
| 209 '$(SolutionDir)../build/common.vsprops', | 213 '$(SolutionDir)../build/common.vsprops', |
| 210 '$(SolutionDir)../build/release.vsprops', | 214 '$(SolutionDir)../build/release.vsprops', |
| 211 '$(SolutionDir)../third_party/icu38/build/using_icu.vsprops', | 215 '$(SolutionDir)../third_party/icu38/build/using_icu.vsprops', |
| 212 ('$(SolutionDir)../' | 216 ('$(SolutionDir)../' |
| 213 + 'third_party/libxml/build/using_libxml.vsprops'), | 217 + 'third_party/libxml/build/using_libxml.vsprops'), |
| 214 '$(SolutionDir)../testing/using_gtest.vsprops', | 218 '$(SolutionDir)../testing/using_gtest.vsprops', |
| 215 '$(SolutionDir)../skia/using_skia.vsprops', | 219 '$(SolutionDir)../skia/using_skia.vsprops', |
| 216 ]) | 220 ]) |
| OLD | NEW |