diff options
author | gfeher@chromium.org <gfeher@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-02 16:16:58 +0000 |
---|---|---|
committer | gfeher@chromium.org <gfeher@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-02 16:16:58 +0000 |
commit | 9a5e7286848eca769adfaa18792dd9e502e8ae4e (patch) | |
tree | 7afd5f6d095c35396c9090c9692358ff67959fb8 /chrome/tools | |
parent | 3af7229b4f97f17b4f2aee34bd3ef3af7fd16e50 (diff) | |
download | chromium_src-9a5e7286848eca769adfaa18792dd9e502e8ae4e.zip chromium_src-9a5e7286848eca769adfaa18792dd9e502e8ae4e.tar.gz chromium_src-9a5e7286848eca769adfaa18792dd9e502e8ae4e.tar.bz2 |
Reland r57812 (Add the new Mac manifest to the application bundle) and remove dummy translations
Add the policy templates generated from chrome/app/policy_templates.json to the Mac application bundle. (The template generator for Mac is implemented in CL 3116027) Also remove the old manifest file and references to translations that are not there yet.
The problem with the previous landing attempt was that in Release mode build, the following script was looking for binary files that were not there: build/mac/strip_from_xcode
BUG=49316
TEST=add Chromium to the managed applications' list in the OSX Workgroup Manager, and see if it shows the manageable preferences with English descriptions
Review URL: http://codereview.chromium.org/3287003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@58366 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/tools')
-rwxr-xr-x | chrome/tools/build/mac/copy_mcx_manifest.sh | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/chrome/tools/build/mac/copy_mcx_manifest.sh b/chrome/tools/build/mac/copy_mcx_manifest.sh deleted file mode 100755 index fc4cbfc..0000000 --- a/chrome/tools/build/mac/copy_mcx_manifest.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash - -# Copyright (c) 2010 The Chromium Authors. All rights reserved. -# Use of this source code is governed by a BSD-style license that can be -# found in the LICENSE file. - -set -e - -if [[ ${#} -ne 4 ]]; then - echo "usage: ${0} APP_NAME IDENTIFIER SOURCE DESTINATION" >&2 - exit 1 -fi - -APP_NAME="${1}" -IDENTIFIER=${2} -SOURCE=${3} -DESTINATION=${4} - -# All hail sed. -exec sed -e "s/@APP_NAME@/${APP_NAME}/g" \ - -e "s/@CHROMIUM_BUNDLE_ID@/${IDENTIFIER}/g" \ - "${SOURCE}" > "${DESTINATION}" |