diff options
author | tschmelcher@chromium.org <tschmelcher@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-11 20:30:00 +0000 |
---|---|---|
committer | tschmelcher@chromium.org <tschmelcher@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-11 20:30:00 +0000 |
commit | 7a589151c9dd4e18cade299ec2259743557df629 (patch) | |
tree | a03cc969bf035a4617477f2a4b7304cf786beb4f /o3d/tests | |
parent | c15074b5186ea26e2613133f7889b8117b826a40 (diff) | |
download | chromium_src-7a589151c9dd4e18cade299ec2259743557df629.zip chromium_src-7a589151c9dd4e18cade299ec2259743557df629.tar.gz chromium_src-7a589151c9dd4e18cade299ec2259743557df629.tar.bz2 |
Mac: Undo the change in r44662 to use npo3dautoplugin for the default Mac bundle name and instead return to using "O3D".
TEST=built with default name and with an overridden name, on Mac
BUG=none
Review URL: http://codereview.chromium.org/2027004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46957 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d/tests')
-rw-r--r-- | o3d/tests/build.scons | 2 | ||||
-rw-r--r-- | o3d/tests/lab/runner_constants.py | 2 | ||||
-rw-r--r-- | o3d/tests/selenium/selenium.gyp | 5 |
3 files changed, 4 insertions, 5 deletions
diff --git a/o3d/tests/build.scons b/o3d/tests/build.scons index 29125c0..7d20e6c 100644 --- a/o3d/tests/build.scons +++ b/o3d/tests/build.scons @@ -546,7 +546,7 @@ cleanup_steps = [] selenium_good_to_go = True if run_env.Bit('mac'): - plugin_path = '$ARTIFACTS_DIR/npo3dautoplugin.plugin' + plugin_path = '$ARTIFACTS_DIR/O3D.plugin' if run_env['MAC_HERMETIC_FIREFOX_DIR']: # if we have a hermetic version of Firefox, then run it diff --git a/o3d/tests/lab/runner_constants.py b/o3d/tests/lab/runner_constants.py index ff6a09e..33afbe5 100644 --- a/o3d/tests/lab/runner_constants.py +++ b/o3d/tests/lab/runner_constants.py @@ -92,7 +92,7 @@ if util.IsWindows(): INSTALL_PATHS += [join(HOME, 'Application Data', 'Google', 'O3D', 'o3d_host.dll')] elif util.IsMac(): - INSTALL_PATHS += ['/Library/Internet Plug-Ins/npo3dautoplugin.plugin'] + INSTALL_PATHS += ['/Library/Internet Plug-Ins/O3D.plugin'] else: INSTALL_PATHS += [join(HOME, '.mozilla', 'plugins', 'libnpo3dautoplugin.so')] diff --git a/o3d/tests/selenium/selenium.gyp b/o3d/tests/selenium/selenium.gyp index 9820a13..fd5b4e1 100644 --- a/o3d/tests/selenium/selenium.gyp +++ b/o3d/tests/selenium/selenium.gyp @@ -16,7 +16,6 @@ }, 'includes': [ '../../build/common.gypi', - '../../plugin/branding.gypi', ], 'targets': [ { @@ -184,7 +183,7 @@ { 'action_name': 'unpack_firefox', 'inputs': [ - '<(PRODUCT_DIR)/<(plugin_npapi_filename).plugin', + '<(PRODUCT_DIR)/O3D.plugin', ], 'outputs': [ '<(PRODUCT_DIR)/selenium_firefox', @@ -192,7 +191,7 @@ 'action': [ 'python', 'unpack_firefox.py', - '--plugin_path=<(PRODUCT_DIR)/<(plugin_npapi_filename).plugin', + '--plugin_path=<(PRODUCT_DIR)/O3D.plugin', '--product_path=<(PRODUCT_DIR)', ], }, |