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

Side by Side Diff: chrome/installer/mini_installer/installer_unittests.scons

Issue 10952: More *.scons renaming:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 1 month 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
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(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/using_base.scons',
11 '$GTEST_DIR/../using_gtest.scons',
12 '$ICU38_DIR/using_icu38.scons',
13 ])
14
15 env.Prepend(
16 CPPPATH = [
17 '$CHROME_SRC_DIR',
18 ],
19 LIBS = [
20 'common',
21 'util',
22 ],
23 )
24
25 if env['PLATFORM'] == 'win32':
26 env.FilterOut(
27 LIBS = ['DelayImp.lib'],
28 )
29
30 env.Prepend(
31 LINKFLAGS = [
32 '/INCREMENTAL',
33 '/DEBUG',
34
35 '/DELAYLOAD:"dwmapi.dll"',
36 '/DELAYLOAD:"uxtheme.dll"',
37
38 '/MACHINE:X86',
39 '/FIXED:No',
40
41 '/safeseh',
42 '/dynamicbase',
43 '/ignore:4199',
44 '/nxcompat',
45 ],
46 LIBS = [
47 'comsupp',
48 'oleacc',
49 'rpcrt4',
50 'shlwapi',
51 ],
52 )
53
54 input_files = [
55 '../setup/setup_constants$OBJSUFFIX',
56 '../util/copy_tree_work_item_unittest.cc',
57 '../util/create_dir_work_item_unittest.cc',
58 '../util/create_reg_key_work_item_unittest.cc',
59 '../util/delete_reg_value_work_item_unittest.cc',
60 '../util/delete_tree_work_item_unittest.cc',
61 '../util/google_chrome_distribution_unittest.cc',
62 '../util/helper_unittest.cc',
63 '../util/run_all_unittests.cc',
64 '../util/set_reg_value_work_item_unittest.cc',
65 '../util/work_item_list_unittest.cc',
66 ]
67
68 env.ChromeTestProgram('installer_unittests', input_files)
OLDNEW
« no previous file with comments | « chrome/installer/mini_installer/SConscript ('k') | chrome/installer/mini_installer/mini_installer.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698