OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 Import('env') |
| 6 |
| 7 env = env.Clone() |
| 8 |
| 9 env.ApplySConscript([ |
| 10 '$BASE_DIR/gfx/using_base_gfx.scons', |
| 11 '$BASE_DIR/using_base.scons', |
| 12 '$BZIP2_DIR/using_bzip2.scons', |
| 13 '$CHROME_SRC_DIR/build/using_googleurl.scons', |
| 14 '$CHROME_SRC_DIR/build/using_v8.scons', |
| 15 '$GTEST_DIR/../using_gtest.scons', |
| 16 '$ICU38_DIR/using_icu38.scons', |
| 17 '$LIBJPEG_DIR/using_libjpeg.scons', |
| 18 '$LIBPNG_DIR/using_libpng.scons', |
| 19 '$LIBXML_DIR/using_libxml.scons', |
| 20 '$LIBXSLT_DIR/using_libxslt.scons', |
| 21 '$MODP_B64_DIR/using_modp_b64.scons', |
| 22 '$NET_DIR/using_net.scons', |
| 23 '$SDCH_DIR/using_sdch.scons', |
| 24 '$SKIA_DIR/using_skia.scons', |
| 25 '$ZLIB_DIR/using_zlib.scons', |
| 26 ]) |
| 27 |
| 28 env.Prepend( |
| 29 CPPDEFINES = [ |
| 30 'PERF_TEST', |
| 31 ], |
| 32 LIBS = [ |
| 33 'activex_shim', |
| 34 'browser', |
| 35 'browser_views', |
| 36 'common', |
| 37 'debugger', |
| 38 'default_plugin', |
| 39 'glue', |
| 40 'hunspell', |
| 41 'JavaScriptCore_pcre', |
| 42 'plugin', |
| 43 'port', |
| 44 'renderer', |
| 45 'sqlite', |
| 46 'util', |
| 47 'v8_snapshot', |
| 48 'V8Bindings', |
| 49 'views', |
| 50 'WebCore', |
| 51 'WTF', |
| 52 ], |
| 53 ) |
| 54 |
| 55 if env['PLATFORM'] == 'win32': |
| 56 env.Prepend( |
| 57 LIBS = [ |
| 58 'rpcrt4', |
| 59 'shlwapi', |
| 60 'winmm', |
| 61 ], |
| 62 ) |
| 63 |
| 64 input_files = [ |
| 65 'generate_profile.cc', |
| 66 ] |
| 67 |
| 68 env.ChromeTestProgram('generate_profile', input_files) |
OLD | NEW |