diff options
author | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-04 22:02:30 +0000 |
---|---|---|
committer | viettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-04 22:02:30 +0000 |
commit | 21e431cc32b0f1daf026658d4ac6e4f7723c94a4 (patch) | |
tree | 5d8cc1914e6e587479c5b29a779ed9b4b8ceeb6f /third_party/adobe | |
parent | 1ae27c56dee7b74754d5a6e15a05eddd46263001 (diff) | |
download | chromium_src-21e431cc32b0f1daf026658d4ac6e4f7723c94a4.zip chromium_src-21e431cc32b0f1daf026658d4ac6e4f7723c94a4.tar.gz chromium_src-21e431cc32b0f1daf026658d4ac6e4f7723c94a4.tar.bz2 |
Include plugin.vch files for Flash Player (on official builds).
BUG=none
TEST=everything still builds, new-style DRM-protected content plays
Review URL: http://codereview.chromium.org/2630001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48978 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/adobe')
-rw-r--r-- | third_party/adobe/flash/flash_player.gyp | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/third_party/adobe/flash/flash_player.gyp b/third_party/adobe/flash/flash_player.gyp index 47646ad..b34a14b 100644 --- a/third_party/adobe/flash/flash_player.gyp +++ b/third_party/adobe/flash/flash_player.gyp @@ -16,14 +16,22 @@ 'files': [], 'conditions': [ [ 'OS == "linux" and target_arch == "ia32"', { - 'files': [ 'binaries/linux/libgcflashplayer.so' ] + 'files': [ + 'binaries/linux/libgcflashplayer.so', + 'binaries/linux/plugin.vch', + ] }], [ 'OS == "mac"', { - 'files': - [ 'binaries/mac/Flash Player Plugin for Chrome.plugin' ] + 'files': [ + 'binaries/mac/Flash Player Plugin for Chrome.plugin', + 'binaries/mac/plugin.vch', + ] }], [ 'OS == "win"', { - 'files': [ 'binaries/win/gcswf32.dll' ] + 'files': [ + 'binaries/win/gcswf32.dll', + 'binaries/win/plugin.vch', + ] }], ], }], |