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

Side by Side Diff: chrome/installer/util/SConscript

Issue 9259: Adding visual studio solution files.... (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
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 9
10 env.Prepend( 10 env.Prepend(
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 # directory, so add that to PYTHONPATH for this command execution. 66 # directory, so add that to PYTHONPATH for this command execution.
67 env_x = env.Clone() 67 env_x = env.Clone()
68 env_x.AppendENVPath('PYTHONPATH', 68 env_x.AppendENVPath('PYTHONPATH',
69 [env_x.Dir('$CHROME_SRC_DIR/tools/grit/grit/extern').abspath]) 69 [env_x.Dir('$CHROME_SRC_DIR/tools/grit/grit/extern').abspath])
70 env_x.Command(['$CHROME_DIR/installer/util/installer_util_strings.rc', 70 env_x.Command(['$CHROME_DIR/installer/util/installer_util_strings.rc',
71 '$CHROME_DIR/installer/util/installer_util_strings.h'], 71 '$CHROME_DIR/installer/util/installer_util_strings.h'],
72 ['$CHROME_DIR/installer/util/prebuild/create_string_rc.py', 72 ['$CHROME_DIR/installer/util/prebuild/create_string_rc.py',
73 '$CHROME_DIR/app/generated_resources.grd'] + 73 '$CHROME_DIR/app/generated_resources.grd'] +
74 env.Glob('$CHROME_DIR/app/resources/*.xtb'), 74 env.Glob('$CHROME_DIR/app/resources/*.xtb'),
75 "$PYTHON ${SOURCES[0]} ${TARGET.dir}") 75 "$PYTHON ${SOURCES[0]} ${TARGET.dir}")
76
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698