Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(138)

Side by Side Diff: chrome/test/unit/unit_tests.scons

Issue 27147: Linux: server side backing stores (Closed)
Patch Set: ... Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/test/perf/perftests.scons ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 Import('bdict_reader_o', 'bdict_writer_o') 6 Import('bdict_reader_o', 'bdict_writer_o')
7 7
8 env = env.Clone() 8 env = env.Clone()
9 9
10 env.SConscript([ 10 env.SConscript([
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 'util', 46 'util',
47 'v8_snapshot', 47 'v8_snapshot',
48 48
49 'WTF', 49 'WTF',
50 'V8Bindings', 50 'V8Bindings',
51 'default_plugin', 51 'default_plugin',
52 'glue', 52 'glue',
53 'JavaScriptCore_pcre', 53 'JavaScriptCore_pcre',
54 'port', 54 'port',
55 'WebCore', 55 'WebCore',
56
57 'X11',
58 'Xrender',
59 'Xext',
56 ], 60 ],
57 ) 61 )
58 62
59 if env.Bit('windows'): 63 if env.Bit('windows'):
60 env.Prepend( 64 env.Prepend(
61 CPPPATH = [ 65 CPPPATH = [
62 '$CHROME_DIR/tools/build/win', 66 '$CHROME_DIR/tools/build/win',
63 ], 67 ],
64 ) 68 )
65 69
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 '$CHROME_DIR/browser/printing/page_setup_unittest.cc', 152 '$CHROME_DIR/browser/printing/page_setup_unittest.cc',
149 '$CHROME_DIR/browser/password_manager/password_form_manager_unittest.cc', 153 '$CHROME_DIR/browser/password_manager/password_form_manager_unittest.cc',
150 '$CHROME_DIR/browser/printing/print_job_unittest.cc', 154 '$CHROME_DIR/browser/printing/print_job_unittest.cc',
151 '$CHROME_DIR/browser/printing/printing_test.h', 155 '$CHROME_DIR/browser/printing/printing_test.h',
152 '$CHROME_DIR/browser/profile_manager_unittest.cc', 156 '$CHROME_DIR/browser/profile_manager_unittest.cc',
153 '$CHROME_DIR/browser/safe_browsing/protocol_manager_unittest.cc', 157 '$CHROME_DIR/browser/safe_browsing/protocol_manager_unittest.cc',
154 '$CHROME_DIR/browser/safe_browsing/protocol_parser_unittest.cc', 158 '$CHROME_DIR/browser/safe_browsing/protocol_parser_unittest.cc',
155 '$CHROME_DIR/browser/history/query_parser_unittest.cc', 159 '$CHROME_DIR/browser/history/query_parser_unittest.cc',
156 '$CHROME_DIR/browser/renderer_host/renderer_security_policy_unittest.cc', 160 '$CHROME_DIR/browser/renderer_host/renderer_security_policy_unittest.cc',
157 '$CHROME_DIR/browser/renderer_host/resource_dispatcher_host_unittest.cc', 161 '$CHROME_DIR/browser/renderer_host/resource_dispatcher_host_unittest.cc',
162 '$CHROME_DIR/browser/renderer_host/test_render_view_host.cc',
158 '$CHROME_DIR/browser/rlz/rlz_unittest.cc', 163 '$CHROME_DIR/browser/rlz/rlz_unittest.cc',
159 '$CHROME_DIR/browser/safe_browsing/safe_browsing_database_unittest.cc', 164 '$CHROME_DIR/browser/safe_browsing/safe_browsing_database_unittest.cc',
160 '$CHROME_DIR/browser/safe_browsing/safe_browsing_util_unittest.cc', 165 '$CHROME_DIR/browser/safe_browsing/safe_browsing_util_unittest.cc',
161 '$CHROME_DIR/browser/download/save_package_unittest.cc', 166 '$CHROME_DIR/browser/download/save_package_unittest.cc',
162 '$CHROME_DIR/browser/sessions/session_backend_unittest.cc', 167 '$CHROME_DIR/browser/sessions/session_backend_unittest.cc',
163 '$CHROME_DIR/browser/sessions/session_service_test_helper.cc', 168 '$CHROME_DIR/browser/sessions/session_service_test_helper.cc',
164 '$CHROME_DIR/browser/sessions/session_service_test_helper.h', 169 '$CHROME_DIR/browser/sessions/session_service_test_helper.h',
165 '$CHROME_DIR/browser/sessions/session_service_unittest.cc', 170 '$CHROME_DIR/browser/sessions/session_service_unittest.cc',
166 '$CHROME_DIR/browser/site_instance_unittest.cc', 171 '$CHROME_DIR/browser/site_instance_unittest.cc',
167 '$CHROME_DIR/browser/history/snippet_unittest.cc', 172 '$CHROME_DIR/browser/history/snippet_unittest.cc',
(...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after
566 '../../third_party/hunspell/using_hunspell.vsprops', 571 '../../third_party/hunspell/using_hunspell.vsprops',
567 '../../../third_party/npapi/using_npapi.vsprops', 572 '../../../third_party/npapi/using_npapi.vsprops',
568 ]) 573 ])
569 574
570 p.AddFileConfig('../../tools/build/win/precompiled_wtl.cc', 575 p.AddFileConfig('../../tools/build/win/precompiled_wtl.cc',
571 'Debug|Win32', 576 'Debug|Win32',
572 tools=[ 577 tools=[
573 MSVSTool('VCCLCompilerTool', 578 MSVSTool('VCCLCompilerTool',
574 UsePrecompiledHeader='1'), 579 UsePrecompiledHeader='1'),
575 ]) 580 ])
OLDNEW
« no previous file with comments | « chrome/test/perf/perftests.scons ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698