summaryrefslogtreecommitdiffstats
path: root/chrome/installer
diff options
context:
space:
mode:
authorfinnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-03 02:29:51 +0000
committerfinnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-03 02:29:51 +0000
commitcc9f43849499b4d0b42f199379848d472ccb6c1b (patch)
treeab270f6b5fde217bbeb61069ae8cc937f1675a02 /chrome/installer
parentca60ca743e46be384d9a639b68dcba2b01e3d433 (diff)
downloadchromium_src-cc9f43849499b4d0b42f199379848d472ccb6c1b.zip
chromium_src-cc9f43849499b4d0b42f199379848d472ccb6c1b.tar.gz
chromium_src-cc9f43849499b4d0b42f199379848d472ccb6c1b.tar.bz2
Create a project for maintaining default extensions.
This project is responsible for listing and copying the extensions we want to ship with Chrome by default. It copies the .crx files listed in the project plus a .json file from: src\chrome\browser\extensions\default_extensions to debug\extensions ... where the mini_installer will pick them up. At the moment only the json file is getting copied, but we can add .crx files when they are ready. BUG=None TEST=I will give a build to QA for testing this. Review URL: http://codereview.chromium.org/155016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19889 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/installer')
-rwxr-xr-xchrome/installer/mini_installer.gyp1
-rw-r--r--chrome/installer/mini_installer/mini_installer.vcproj8
2 files changed, 1 insertions, 8 deletions
diff --git a/chrome/installer/mini_installer.gyp b/chrome/installer/mini_installer.gyp
index aa982f4..969fe8c 100755
--- a/chrome/installer/mini_installer.gyp
+++ b/chrome/installer/mini_installer.gyp
@@ -19,6 +19,7 @@
'dependencies': [
'../chrome.gyp:chrome',
'../chrome.gyp:chrome_dll',
+ '../chrome.gyp:default_extensions',
'../../testing/gtest.gyp:gtest',
'installer.gyp:setup',
],
diff --git a/chrome/installer/mini_installer/mini_installer.vcproj b/chrome/installer/mini_installer/mini_installer.vcproj
index cf7f42c..abe312a 100644
--- a/chrome/installer/mini_installer/mini_installer.vcproj
+++ b/chrome/installer/mini_installer/mini_installer.vcproj
@@ -27,10 +27,6 @@
InheritedPropertySheets=".\mini_installer_debug.vsprops;$(SolutionDir)..\testing\using_gtest.vsprops"
>
<Tool
- Name="VCPreBuildEventTool"
- CommandLine="IF NOT EXIST &quot;$(OutDir)\Extensions&quot; mkdir &quot;$(OutDir)\Extensions&quot; &amp;&amp; copy /Y &quot;$(SolutionDir)browser\extensions\external_extensions.json&quot; &quot;$(OutDir)\Extensions&quot;"
- />
- <Tool
Name="Create Installer Archive"
LastChromeInstaller="$(LAST_CHROME_INSTALLER)"
SkipRebuildArchive="$(SKIP_REBUILD_CHROME_ARCHIVE)"
@@ -59,10 +55,6 @@
InheritedPropertySheets=".\mini_installer_release.vsprops;$(SolutionDir)..\testing\using_gtest.vsprops"
>
<Tool
- Name="VCPreBuildEventTool"
- CommandLine="IF NOT EXIST &quot;$(OutDir)\Extensions&quot; mkdir &quot;$(OutDir)\Extensions&quot; &amp;&amp; copy /Y &quot;$(SolutionDir)browser\extensions\external_extensions.json&quot; &quot;$(OutDir)\Extensions&quot;"
- />
- <Tool
Name="Create Installer Archive"
LastChromeInstaller="$(LAST_CHROME_INSTALLER)"
SkipRebuildArchive="$(SKIP_REBUILD_CHROME_ARCHIVE)"