diff options
author | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-22 23:03:27 +0000 |
---|---|---|
committer | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-22 23:03:27 +0000 |
commit | 34ac8f3dd803e412fe5b34d19fdd46c588aefccf (patch) | |
tree | f30f606cf18beee326e500246fa1a3f645faa42c /chrome/chrome.xcodeproj | |
parent | cb910e336663dd63a35f2721c50419b0fdc1500e (diff) | |
download | chromium_src-34ac8f3dd803e412fe5b34d19fdd46c588aefccf.zip chromium_src-34ac8f3dd803e412fe5b34d19fdd46c588aefccf.tar.gz chromium_src-34ac8f3dd803e412fe5b34d19fdd46c588aefccf.tar.bz2 |
Update include paths for grit files. Go ahead and resort
the headers too.
Review URL: http://codereview.chromium.org/21472
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10167 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/chrome.xcodeproj')
-rwxr-xr-x | chrome/chrome.xcodeproj/generate_headers.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/chrome.xcodeproj/generate_headers.sh b/chrome/chrome.xcodeproj/generate_headers.sh index 27a6863..cdd54db 100755 --- a/chrome/chrome.xcodeproj/generate_headers.sh +++ b/chrome/chrome.xcodeproj/generate_headers.sh @@ -11,7 +11,7 @@ mkdir -p "${GRIT_DIR}" # compare generated_resources.grd to generated_resources.h. If the .h is # older or doesn't exist, rebuild it. -if [ "${GRIT_DIR}/generated_resources.h" -ot \ +if [ "${GRIT_DIR}/grit/generated_resources.h" -ot \ "${PROJECT_DIR}/app/generated_resources.grd" ] then python "${PROJECT_DIR}/../tools/grit/grit.py" \ @@ -21,7 +21,7 @@ fi # compare chromium_strings.grd to chromium_strings.h. If the .h is # older or doesn't exist, rebuild it -if [ "${GRIT_DIR}/chromium_strings.h" -ot \ +if [ "${GRIT_DIR}/grit/chromium_strings.h" -ot \ "${PROJECT_DIR}/app/chromium_strings.grd" ] then python "${PROJECT_DIR}/../tools/grit/grit.py" \ @@ -31,7 +31,7 @@ fi # compare browser_resources.grd to browser_resources.h. If the .h is # older or doesn't exist, rebuild it -if [ "${GRIT_DIR}/browser_resources.h" -ot \ +if [ "${GRIT_DIR}/grit/browser_resources.h" -ot \ "${PROJECT_DIR}/browser/browser_resources.grd" ] then python "${PROJECT_DIR}/../tools/grit/grit.py" \ |