Chromium Code Reviews| Index: build/mac/make_more_helpers.sh |
| diff --git a/build/mac/make_more_helpers.sh b/build/mac/make_more_helpers.sh |
| index 6f5c4749ebf4dc7c0de8deff03e0c2d8ff7b2246..b92ffdd2a26badfddffe31b6e664b35b81c96d8a 100755 |
| --- a/build/mac/make_more_helpers.sh |
| +++ b/build/mac/make_more_helpers.sh |
| @@ -8,11 +8,7 @@ |
| # |
| # This script creates additional helper .app bundles for Chromium, based on |
| # the existing helper .app bundle, changing their Mach-O header's flags to |
| -# enable and disable various features. Based on Chromium Helper.app, it will |
| -# create Chromium Helper EH.app, which has the MH_NO_HEAP_EXECUTION bit |
| -# cleared to support Chromium child processes that require an executable heap, |
| -# and Chromium Helper NP.app, which has the MH_PIE bit cleared to support |
| -# Chromium child processes that cannot tolerate ASLR. |
| +# enable and disable various features. |
| # |
| # This script expects to be called from the chrome_exe target as a postbuild, |
| # and operates directly within the built-up browser app's versioned directory. |
| @@ -86,6 +82,3 @@ APP_NAME="${2}" |
| CONTENTS_DIR="${BUILT_PRODUCTS_DIR}/${CONTENTS_FOLDER_PATH}" |
| CONTAINING_DIR="${CONTENTS_DIR}/${DIRECTORY_WITHIN_CONTENTS}" |
| - |
| -make_helper "${CONTAINING_DIR}" "${APP_NAME}" "EH" "--executable-heap" |
|
Mark Mentovai
2015/08/31 17:47:42
This whole script is a no-op now. Are you still ke
Greg K
2015/09/01 23:18:05
We'll need this again for the Google Chrome Helper
|
| -make_helper "${CONTAINING_DIR}" "${APP_NAME}" "NP" "--no-pie" |