| OLD | NEW |
| 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 Loading... |
| 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 | |
| OLD | NEW |