diff options
author | lambroslambrou@google.com <lambroslambrou@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-02 17:43:47 +0000 |
---|---|---|
committer | lambroslambrou@google.com <lambroslambrou@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-02 17:43:47 +0000 |
commit | 09635d8e474198740ecb16a147b9f215ebfd0c4c (patch) | |
tree | bb4383311c09766014a411601034f17cf3a78f45 /chrome/tools | |
parent | 9f7bcf0a3b1e8153ee53feedc7e2cd124f481693 (diff) | |
download | chromium_src-09635d8e474198740ecb16a147b9f215ebfd0c4c.zip chromium_src-09635d8e474198740ecb16a147b9f215ebfd0c4c.tar.gz chromium_src-09635d8e474198740ecb16a147b9f215ebfd0c4c.tar.bz2 |
Add Remoting Host plugin to stage/archive processing.
The intention is to have Breakpad symbols for the Remoting Host plugin uploaded to the crash servers. See the bug-report for background info.
BUG=87632
TEST=Not sure how.
Review URL: http://codereview.chromium.org/7538033
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@95103 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/tools')
-rw-r--r-- | chrome/tools/build/linux/FILES.cfg | 6 | ||||
-rw-r--r-- | chrome/tools/build/mac/FILES.cfg | 5 | ||||
-rw-r--r-- | chrome/tools/build/win/FILES.cfg | 6 |
3 files changed, 17 insertions, 0 deletions
diff --git a/chrome/tools/build/linux/FILES.cfg b/chrome/tools/build/linux/FILES.cfg index be3a61f..f774d27 100644 --- a/chrome/tools/build/linux/FILES.cfg +++ b/chrome/tools/build/linux/FILES.cfg @@ -123,4 +123,10 @@ FILES = [ 'arch': ['64bit'], 'buildtype': ['dev', 'official'], }, + # Remoting Host plugin files: + { + 'filename': 'libremoting_host_plugin.so', + 'arch': ['32bit', '64bit'], + 'buildtype': ['dev', 'official'], + }, ] diff --git a/chrome/tools/build/mac/FILES.cfg b/chrome/tools/build/mac/FILES.cfg index 47e531f..8a09559 100644 --- a/chrome/tools/build/mac/FILES.cfg +++ b/chrome/tools/build/mac/FILES.cfg @@ -27,4 +27,9 @@ FILES = [ 'filename': 'Google Chrome Packaging', 'buildtype': ['official'], }, + # Remoting Host plugin files: + { + 'filename': 'remoting_host_plugin.plugin', + 'buildtype': ['dev', 'official'], + }, ] diff --git a/chrome/tools/build/win/FILES.cfg b/chrome/tools/build/win/FILES.cfg index 905cdec..0a81e8e 100644 --- a/chrome/tools/build/win/FILES.cfg +++ b/chrome/tools/build/win/FILES.cfg @@ -382,4 +382,10 @@ FILES = [ 'arch': ['32bit', '64bit'],
'buildtype': ['dev', 'official'],
},
+ # Remoting Host plugin files:
+ {
+ 'filename': 'remoting_host_plugin.dll',
+ 'arch': ['32bit', '64bit'],
+ 'buildtype': ['dev', 'official'],
+ },
]
|