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

Side by Side Diff: chrome/test/automation/automation.scons

Issue 27240: Make startup_tests build and run on Linux (except reference tests). (Closed)
Patch Set: small bugfix in process_util Created 11 years, 9 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/common/chrome_constants.cc ('k') | chrome/test/automation/automation_proxy.h » ('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') 5 Import('env')
6 6
7 env = env.Clone() 7 env = env.Clone()
8 8
9 env.ApplySConscript([ 9 env.ApplySConscript([
10 '$CHROME_DIR/third_party/wtl/using_wtl.scons', 10 '$CHROME_DIR/third_party/wtl/using_wtl.scons',
(...skipping 24 matching lines...) Expand all
35 'tab_proxy.cc', 35 'tab_proxy.cc',
36 'tab_proxy.h', 36 'tab_proxy.h',
37 'window_proxy.cc', 37 'window_proxy.cc',
38 'window_proxy.h', 38 'window_proxy.h',
39 ]) 39 ])
40 40
41 if not env.Bit('windows'): 41 if not env.Bit('windows'):
42 # TODO(port): port. 42 # TODO(port): port.
43 input_files.Remove( 43 input_files.Remove(
44 'autocomplete_edit_proxy.cc', 44 'autocomplete_edit_proxy.cc',
45 'browser_proxy.cc',
46 'constrained_window_proxy.cc', 45 'constrained_window_proxy.cc',
47 'tab_proxy.cc', 46 'tab_proxy.cc',
48 'window_proxy.cc', 47 'window_proxy.cc',
49 ) 48 )
50 49
51 env.ChromeLibrary('automation', input_files) 50 env.ChromeLibrary('automation', input_files)
52 51
53 p = env.ChromeMSVSProject('automation.vcproj', 52 p = env.ChromeMSVSProject('automation.vcproj',
54 dest=('$CHROME_SRC_DIR/chrome/' 53 dest=('$CHROME_SRC_DIR/chrome/'
55 + 'test/automation/automation.vcproj'), 54 + 'test/automation/automation.vcproj'),
(...skipping 27 matching lines...) Expand all
83 InheritedPropertySheets=[ 82 InheritedPropertySheets=[
84 '$(SolutionDir)../build/debug.vsprops', 83 '$(SolutionDir)../build/debug.vsprops',
85 './automation.vsprops', 84 './automation.vsprops',
86 ]) 85 ])
87 86
88 p.AddConfig('Release|Win32', 87 p.AddConfig('Release|Win32',
89 InheritedPropertySheets=[ 88 InheritedPropertySheets=[
90 '$(SolutionDir)../build/release.vsprops', 89 '$(SolutionDir)../build/release.vsprops',
91 './automation.vsprops', 90 './automation.vsprops',
92 ]) 91 ])
OLDNEW
« no previous file with comments | « chrome/common/chrome_constants.cc ('k') | chrome/test/automation/automation_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698