Index: chrome/app/chrome_resources.scons |
=================================================================== |
--- chrome/app/chrome_resources.scons (revision 12583) |
+++ chrome/app/chrome_resources.scons (working copy) |
@@ -1,37 +0,0 @@ |
-# Copyright (c) 2009 The Chromium Authors. All rights reserved. |
-# Use of this source code is governed by a BSD-style license that can be |
-# found in the LICENSE file. |
- |
-import os |
- |
-Import('env') |
- |
-env = env.Clone() |
- |
-grd_files = [ |
- '$CHROME_SRC_DIR/chrome/browser/browser_resources.grd', |
- '$CHROME_SRC_DIR/chrome/browser/debugger/resources/debugger_resources.grd', |
- '$CHROME_SRC_DIR/chrome/common/common_resources.grd', |
- '$CHROME_SRC_DIR/chrome/renderer/renderer_resources.grd', |
-] |
- |
-for grd_file in grd_files: |
- # The fake target gets replaced with real targets when the GRIT Builder |
- # runs. |
- generated = env.GRIT( |
- '$TARGET_ROOT/grit_derived_sources/fake_' + os.path.basename(grd_file), |
- grd_file) |
- |
-if env.Bit('linux'): |
- chrome_pak = env.Repack('$TARGET_ROOT/chrome.pak', |
- ['$TARGET_ROOT/grit_derived_sources/browser_resources.pak', |
- '$TARGET_ROOT/grit_derived_sources/debugger_resources.pak', |
- '$TARGET_ROOT/grit_derived_sources/common_resources.pak', |
- '$TARGET_ROOT/grit_derived_sources/net_resources.pak', |
- '$TARGET_ROOT/grit_derived_sources/renderer_resources.pak', |
- '$TARGET_ROOT/grit_derived_sources/webkit_resources.pak', |
- ] |
- ) |
- i = env.Install('$DESTINATION_ROOT', chrome_pak) |
- env.Requires('$DESTINATION_ROOT/chrome', i) |
- env.Requires('$DESTINATION_ROOT/unit_tests', i) |