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

Side by Side Diff: chrome/tools/profiles/generate_profile.scons

Issue 15051: Convert from using env['PLATFORM'] directly to using the more flexible... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years 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
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 '$BASE_DIR/gfx/using_base_gfx.scons', 10 '$BASE_DIR/gfx/using_base_gfx.scons',
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 'sqlite', 45 'sqlite',
46 'util', 46 'util',
47 'v8_snapshot', 47 'v8_snapshot',
48 'V8Bindings', 48 'V8Bindings',
49 'views', 49 'views',
50 'WebCore', 50 'WebCore',
51 'WTF', 51 'WTF',
52 ], 52 ],
53 ) 53 )
54 54
55 if env['PLATFORM'] == 'win32': 55 if env.Bit('windows'):
56 env.Prepend( 56 env.Prepend(
57 LIBS = [ 57 LIBS = [
58 'rpcrt4', 58 'rpcrt4',
59 'shlwapi', 59 'shlwapi',
60 'winmm', 60 'winmm',
61 ], 61 ],
62 ) 62 )
63 63
64 input_files = [ 64 input_files = [
65 'generate_profile.cc', 65 'generate_profile.cc',
66 ] 66 ]
67 67
68 env.ChromeTestProgram('generate_profile', input_files) 68 env.ChromeTestProgram('generate_profile', input_files)
OLDNEW
« no previous file with comments | « chrome/tools/perf/flush_cache/flush_cache.scons ('k') | chrome/tools/test/image_diff/image_diff.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698