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

Side by Side Diff: chrome/SConscript.unit_tests

Issue 2960: Enable safe browsing tests exercising VerifyMAC.... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 12 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/safe_browsing/protocol_parser_unittest.cc » ('j') | 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_test') 5 Import('env_test')
6 6
7 env_test = env_test.Clone() 7 env_test = env_test.Clone()
8 8
9 env_test.Prepend( 9 env_test.Prepend(
10 CPPPATH = [ 10 CPPPATH = [
(...skipping 12 matching lines...) Expand all
23 '..', 23 '..',
24 ], 24 ],
25 CPPDEFINES = [ 25 CPPDEFINES = [
26 'USE_HUNSPELL', 26 'USE_HUNSPELL',
27 'HUNSPELL_CHROME_CLIENT', 27 'HUNSPELL_CHROME_CLIENT',
28 'LIBXML_STATIC', 28 'LIBXML_STATIC',
29 'PNG_USER_CONFIG', 29 'PNG_USER_CONFIG',
30 'CHROME_PNG_WRITE_SUPPORT', 30 'CHROME_PNG_WRITE_SUPPORT',
31 'UNIT_TEST', 31 'UNIT_TEST',
32 ], 32 ],
33 LIBS = [ 33 LIBS = [ # On Linux, dependencies must follow dependents, so...
34 'net', # net must come before base and modp_b64
35 'bzip2', # bzip2 must come before base
Dean McNamee 2008/09/18 12:47:54 I wouldn't do a column style comment like this. D
34 'base', 36 'base',
35 'base_gfx', 37 'base_gfx',
36 'bzip2',
37 'googleurl', 38 'googleurl',
38 'gtest', 39 'gtest',
39 'icuuc', 40 'icuuc',
40 'libjpeg', 41 'libjpeg',
41 'libpng', 42 'libpng',
42 'libxml', 43 'libxml',
43 'libxslt', 44 'libxslt',
44 'modp_b64', 45 'modp_b64',
45 'net',
46 'skia', 46 'skia',
47 'v8', 47 'v8',
48 'zlib', 48 'zlib',
49 49
50 'WTF', 50 'WTF',
51 'V8Bindings', 51 'V8Bindings',
52 'default_plugin', 52 'default_plugin',
53 'Glue', 53 'Glue',
54 'JavaScriptCore_pcre', 54 'JavaScriptCore_pcre',
55 ], 55 ],
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 241
242 test_program_files = unit_test_files 242 test_program_files = unit_test_files
243 if env_test['PLATFORM'] == 'win32': 243 if env_test['PLATFORM'] == 'win32':
244 # This is probably Windows-specific. 244 # This is probably Windows-specific.
245 test_program_files.extend(libs) 245 test_program_files.extend(libs)
246 unit_tests = env_test.ChromeTestProgram('unit_tests', test_program_files) 246 unit_tests = env_test.ChromeTestProgram('unit_tests', test_program_files)
247 247
248 i = env_test.Install('$TARGET_ROOT', unit_tests) 248 i = env_test.Install('$TARGET_ROOT', unit_tests)
249 Alias('chrome', i) 249 Alias('chrome', i)
250 250
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/safe_browsing/protocol_parser_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698