| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 os | 5 import os |
| 6 | 6 |
| 7 Import('env') | 7 Import('env') |
| 8 | 8 |
| 9 env = env.Clone() | 9 env = env.Clone() |
| 10 | 10 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 generated = env.GRIT( | 21 generated = env.GRIT( |
| 22 '$TARGET_ROOT/grit_derived_sources/fake_' + os.path.basename(grd_file), | 22 '$TARGET_ROOT/grit_derived_sources/fake_' + os.path.basename(grd_file), |
| 23 grd_file) | 23 grd_file) |
| 24 | 24 |
| 25 if env.Bit('linux'): | 25 if env.Bit('linux'): |
| 26 chrome_pak = env.Repack('$TARGET_ROOT/chrome.pak', | 26 chrome_pak = env.Repack('$TARGET_ROOT/chrome.pak', |
| 27 ['$TARGET_ROOT/grit_derived_sources/browser_resources.pak', | 27 ['$TARGET_ROOT/grit_derived_sources/browser_resources.pak', |
| 28 '$TARGET_ROOT/grit_derived_sources/debugger_resources.pak', | 28 '$TARGET_ROOT/grit_derived_sources/debugger_resources.pak', |
| 29 '$TARGET_ROOT/grit_derived_sources/common_resources.pak', | 29 '$TARGET_ROOT/grit_derived_sources/common_resources.pak', |
| 30 '$TARGET_ROOT/grit_derived_sources/renderer_resources.pak', | 30 '$TARGET_ROOT/grit_derived_sources/renderer_resources.pak', |
| 31 '$TARGET_ROOT/grit_derived_sources/webkit_resources.pak', |
| 31 ] | 32 ] |
| 32 ) | 33 ) |
| 33 i = env.Install('$DESTINATION_ROOT', chrome_pak) | 34 i = env.Install('$DESTINATION_ROOT', chrome_pak) |
| 34 env.Requires('$DESTINATION_ROOT/chrome', i) | 35 env.Requires('$DESTINATION_ROOT/chrome', i) |
| 35 env.Requires('$DESTINATION_ROOT/unit_tests', i) | 36 env.Requires('$DESTINATION_ROOT/unit_tests', i) |
| OLD | NEW |