diff options
author | rogerta@chromium.org <rogerta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-28 02:03:59 +0000 |
---|---|---|
committer | rogerta@chromium.org <rogerta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-28 02:03:59 +0000 |
commit | 359584254582a3cb9178434f18897eafd9ba77a8 (patch) | |
tree | 5f0ba81ee8d37dc1ff5721574f5229d23dcada31 /build | |
parent | ef3eb11cb4e71f93bb3d1f11877592397441bc83 (diff) | |
download | chromium_src-359584254582a3cb9178434f18897eafd9ba77a8.zip chromium_src-359584254582a3cb9178434f18897eafd9ba77a8.tar.gz chromium_src-359584254582a3cb9178434f18897eafd9ba77a8.tar.bz2 |
Changed Mac, Linux and Win Official Chrome build to drop default app CRXs in
the build/installer output.
This change undoes the revert of 99878. This change was originally reverted
because it was decided to push this change to M16.
BUG=94920
TEST=Do an Official build in mac, linux and win. Ensure that after installing
the app, you can find the default apps under the install's directory
structure. For win, this is under a default_apps directory, for mac, this is
under a "Default Apps" directory.
Review URL: http://codereview.chromium.org/8041033
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103078 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/common.gypi | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/build/common.gypi b/build/common.gypi index 0bd9b08..1d77143 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -805,6 +805,19 @@ 'clang%': 1, }], ], + # 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. + 'default_apps_list': [ + 'browser/resources/default_apps/external_extensions.json', + 'browser/resources/default_apps/gmail.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/youtube.crx', + ], }, 'target_defaults': { 'variables': { |