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 Import('env') | 5 Import('env') |
6 | 6 |
7 env = env.Clone() | 7 env = env.Clone() |
8 | 8 |
9 env.SConscript([ | 9 env.SConscript([ |
10 '$BASE_DIR/gfx/using_base_gfx.scons', | 10 '$BASE_DIR/gfx/using_base_gfx.scons', |
11 '$BASE_DIR/using_base.scons', | 11 '$BASE_DIR/using_base.scons', |
12 '$BZIP2_DIR/using_bzip2.scons', | 12 '$BZIP2_DIR/using_bzip2.scons', |
13 '$CHROME_DIR/third_party/hunspell/using_hunspell.scons', | 13 '$CHROME_DIR/third_party/hunspell/using_hunspell.scons', |
14 '$CHROME_DIR/third_party/wtl/using_wtl.scons', | 14 '$CHROME_DIR/third_party/wtl/using_wtl.scons', |
15 '$CHROME_SRC_DIR/build/using_googleurl.scons', | 15 '$CHROME_SRC_DIR/build/using_googleurl.scons', |
| 16 '$CHROME_SRC_DIR/build/using_v8.scons', |
16 '$GTEST_DIR/../using_gtest.scons', | 17 '$GTEST_DIR/../using_gtest.scons', |
17 '$ICU38_DIR/using_icu38.scons', | 18 '$ICU38_DIR/using_icu38.scons', |
18 '$LIBJPEG_DIR/using_libjpeg.scons', | 19 '$LIBJPEG_DIR/using_libjpeg.scons', |
19 '$LIBPNG_DIR/using_libpng.scons', | 20 '$LIBPNG_DIR/using_libpng.scons', |
20 '$LIBXML_DIR/using_libxml.scons', | 21 '$LIBXML_DIR/using_libxml.scons', |
21 '$LIBXSLT_DIR/using_libxslt.scons', | 22 '$LIBXSLT_DIR/using_libxslt.scons', |
22 '$MODP_B64_DIR/using_modp_b64.scons', | 23 '$MODP_B64_DIR/using_modp_b64.scons', |
23 '$NET_DIR/using_net.scons', | 24 '$NET_DIR/using_net.scons', |
24 '$NPAPI_DIR/using_npapi.scons', | 25 '$NPAPI_DIR/using_npapi.scons', |
25 '$SDCH_DIR/using_sdch.scons', | 26 '$SDCH_DIR/using_sdch.scons', |
(...skipping 21 matching lines...) Expand all Loading... |
47 'glue', | 48 'glue', |
48 #'jscre', | 49 #'jscre', |
49 'JavaScriptCore_pcre', | 50 'JavaScriptCore_pcre', |
50 'plugin', | 51 'plugin', |
51 'port', | 52 'port', |
52 'renderer', | 53 'renderer', |
53 'sqlite', | 54 'sqlite', |
54 'test_chrome_plugin', | 55 'test_chrome_plugin', |
55 'util', | 56 'util', |
56 'views', | 57 'views', |
57 'v8_g', | |
58 'v8_snapshot', | 58 'v8_snapshot', |
59 'V8Bindings', | 59 'V8Bindings', |
60 'WebCore', | 60 'WebCore', |
61 'WTF', | 61 'WTF', |
62 ], | 62 ], |
63 ) | 63 ) |
64 | 64 |
65 if env['PLATFORM'] == 'win32': | 65 if env['PLATFORM'] == 'win32': |
66 env.Prepend( | 66 env.Prepend( |
67 LINKFLAGS = [ | 67 LINKFLAGS = [ |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 '$CHROME_DIR/test/testing_profile$OBJSUFFIX', | 99 '$CHROME_DIR/test/testing_profile$OBJSUFFIX', |
100 '$CHROME_DIR/test/ui/npapi_test_helper$OBJSUFFIX', | 100 '$CHROME_DIR/test/ui/npapi_test_helper$OBJSUFFIX', |
101 '$CHROME_DIR/test/ui/run_all_unittests$OBJSUFFIX', | 101 '$CHROME_DIR/test/ui/run_all_unittests$OBJSUFFIX', |
102 '$CHROME_DIR/test/ui/ui_test$OBJSUFFIX', | 102 '$CHROME_DIR/test/ui/ui_test$OBJSUFFIX', |
103 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX', | 103 '$CHROME_DIR/test/ui/ui_test_suite$OBJSUFFIX', |
104 | 104 |
105 'view_event_test_base.cc', | 105 'view_event_test_base.cc', |
106 ] | 106 ] |
107 | 107 |
108 env.ChromeTestProgram('interactive_ui_tests', input_files) | 108 env.ChromeTestProgram('interactive_ui_tests', input_files) |
OLD | NEW |