summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-14 23:04:44 +0000
committerviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-14 23:04:44 +0000
commit9a47855c02f699d96bf514e394df2b5a7f405ade (patch)
tree5392b221c8a0f0183239913447ec69499fbcbe98
parent27c145751e36bbe777ecc28d864e248ee0419713 (diff)
downloadchromium_src-9a47855c02f699d96bf514e394df2b5a7f405ade.zip
chromium_src-9a47855c02f699d96bf514e394df2b5a7f405ade.tar.gz
chromium_src-9a47855c02f699d96bf514e394df2b5a7f405ade.tar.bz2
Revert 49738 [problems running tests] - On Mac, move internal plugins to live inside the framework ...
... in particular in a subdirectory called "Internet Plug-Ins". BUG=46400 TEST=builds okay everywhere (including branded builds); internal Flash still okay everywhere on branded builds; on Mac, Flash files end up in above-indicated directory Review URL: http://codereview.chromium.org/2823003 TBR=viettrungluu@chromium.org Review URL: http://codereview.chromium.org/2857001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49740 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/chrome_dll.gypi16
-rw-r--r--chrome/chrome_exe.gypi15
-rw-r--r--chrome/common/chrome_paths.cc18
3 files changed, 21 insertions, 28 deletions
diff --git a/chrome/chrome_dll.gypi b/chrome/chrome_dll.gypi
index 61465d8..f892a1f 100644
--- a/chrome/chrome_dll.gypi
+++ b/chrome/chrome_dll.gypi
@@ -284,10 +284,6 @@
# Bring in pdfsqueeze and run it on all pdfs
'../build/temp_gyp/pdfsqueeze.gyp:pdfsqueeze',
'../build/util/support/support.gyp:*',
- # On Mac, Flash gets put into the framework, so we need this
- # dependency here. flash_player.gyp will copy the Flash bundle
- # into PRODUCT_DIR.
- '../third_party/adobe/flash/flash_player.gyp:flash_player',
],
'rules': [
{
@@ -465,18 +461,6 @@
'<(PRODUCT_DIR)/libffmpegsumo.dylib',
],
},
- {
- 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Internet Plug-Ins',
- 'files': [],
- 'conditions': [
- [ 'branding == "Chrome"', {
- 'files': [
- '<(PRODUCT_DIR)/Flash Player Plugin for Chrome.plugin',
- '<(PRODUCT_DIR)/plugin.vch',
- ],
- }],
- ],
- },
],
'conditions': [
['mac_breakpad==1', {
diff --git a/chrome/chrome_exe.gypi b/chrome/chrome_exe.gypi
index a8a714f..55185b5 100644
--- a/chrome/chrome_exe.gypi
+++ b/chrome/chrome_exe.gypi
@@ -132,6 +132,9 @@
},
'dependencies': [
'chrome_version_info',
+ # Copy Flash Player files to PRODUCT_DIR if applicable.
+ # Let the .gyp file decide what to do on a per-OS basis.
+ '../third_party/adobe/flash/flash_player.gyp:flash_player',
],
'conditions': [
['OS=="linux" or OS=="freebsd" or OS=="openbsd"', {
@@ -330,6 +333,14 @@
'files': [
'<(PRODUCT_DIR)/<(mac_product_name) Helper.app',
],
+ 'conditions': [
+ [ 'branding == "Chrome"', {
+ 'files': [
+ '<(PRODUCT_DIR)/Flash Player Plugin for Chrome.plugin',
+ '<(PRODUCT_DIR)/plugin.vch',
+ ],
+ }],
+ ],
},
],
'postbuilds': [
@@ -404,10 +415,6 @@
],
'dependencies': [
'packed_extra_resources',
- # Copy Flash Player files to PRODUCT_DIR if applicable. Let the .gyp
- # file decide what to do on a per-OS basis; on Mac, internal plugins
- # go inside the framework, so this dependency is in chrome_dll.gypi.
- '../third_party/adobe/flash/flash_player.gyp:flash_player',
],
}],
['OS=="mac" or OS=="win"', {
diff --git a/chrome/common/chrome_paths.cc b/chrome/common/chrome_paths.cc
index 95e1be9..5b517a1 100644
--- a/chrome/common/chrome_paths.cc
+++ b/chrome/common/chrome_paths.cc
@@ -34,18 +34,20 @@ const FilePath::CharType kInternalFlashPluginFileName[] =
namespace chrome {
-// Gets the path for internal plugins.
+// Gets the path for internal (or bundled) plugins.
bool GetInternalPluginsDirectory(FilePath* result) {
#if defined(OS_MACOSX)
- // On Mac, internal plugins reside in subdirectory of the framework.
- *result = chrome::GetFrameworkBundlePath();
- DCHECK(!result->empty());
- *result = result->Append("Internet Plug-Ins");
- return true;
-#else
+ // If called from Chrome, get internal plugins from the versioned directory.
+ if (mac_util::AmIBundled()) {
+ *result = chrome::GetVersionedDirectory();
+ DCHECK(!result->empty());
+ return true;
+ }
+ // In tests, just look in the module directory (below).
+#endif
+
// The rest of the world expects plugins in the module directory.
return PathService::Get(base::DIR_MODULE, result);
-#endif
}
bool GetGearsPluginPathFromCommandLine(FilePath* path) {