summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorrogerta@chromium.org <rogerta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-26 00:57:06 +0000
committerrogerta@chromium.org <rogerta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-26 00:57:06 +0000
commit20cc0bb77df9e3b219b82d8aa7e4c6d12b192767 (patch)
treee0133b0270539024cf0409cb7d934bef401fc390 /build
parent4b58d55dfe4e967f6c384634aa93af4e3e343f8a (diff)
downloadchromium_src-20cc0bb77df9e3b219b82d8aa7e4c6d12b192767.zip
chromium_src-20cc0bb77df9e3b219b82d8aa7e4c6d12b192767.tar.gz
chromium_src-20cc0bb77df9e3b219b82d8aa7e4c6d12b192767.tar.bz2
Make sure that the builder includes the search app crx in the installer. In
a previous CL I added the crx file and the corresponding change to the json file, but forgot to add the crx file to the gyp files. BUG=101500 TEST=Make sure the search app appears in new profiles Review URL: http://codereview.chromium.org/8391011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@107263 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r--build/common.gypi6
1 files changed, 5 insertions, 1 deletions
diff --git a/build/common.gypi b/build/common.gypi
index a88ab33..d3018da 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -871,15 +871,19 @@
],
# List of default apps to install in new profiles. The first list contains
# the source files as found in svn. The second list, used only for linux,
- # contains the destination location for each of the files.
+ # contains the destination location for each of the files. When a crx
+ # is added or removed from the list, the chrome/browser/resources/
+ # default_apps/external_extensions.json file must also be updated.
'default_apps_list': [
'browser/resources/default_apps/external_extensions.json',
'browser/resources/default_apps/gmail.crx',
+ 'browser/resources/default_apps/search.crx',
'browser/resources/default_apps/youtube.crx',
],
'default_apps_list_linux_dest': [
'<(PRODUCT_DIR)/default_apps/external_extensions.json',
'<(PRODUCT_DIR)/default_apps/gmail.crx',
+ '<(PRODUCT_DIR)/default_apps/search.crx',
'<(PRODUCT_DIR)/default_apps/youtube.crx',
],
},