Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(40)

Unified Diff: webkit/webkit.xcodeproj/glue_prebuild.sh

Issue 28305: GYP it, GYP it good (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webkit/webkit.xcodeproj/glue_prebuild.sh
===================================================================
--- webkit/webkit.xcodeproj/glue_prebuild.sh (revision 10690)
+++ webkit/webkit.xcodeproj/glue_prebuild.sh (working copy)
@@ -1,28 +0,0 @@
-#!/bin/sh
-
-# Copyright (c) 2009 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 -ex
-GENERATED_DIR="${CONFIGURATION_TEMP_DIR}/generated"
-GRIT_DIR="${GENERATED_DIR}/grit"
-mkdir -p "${GRIT_DIR}"
-
-# compare webkit_strings.grd to webkit_strings.h. If the .h is
-# older or doesn't exist, rebuild it.
-if [ "${GRIT_DIR}/grit/webkit_strings.h" -ot \
- "${PROJECT_DIR}/glue/webkit_strings.grd" ]
-then
- python "${PROJECT_DIR}/../tools/grit/grit.py" \
- -i "${PROJECT_DIR}/glue/webkit_strings.grd" build \
- -o "${GRIT_DIR}"
-fi
-
-if [ "${GRIT_DIR}/grit/webkit_resources.h" -ot \
- "${PROJECT_DIR}/glue/webkit_resources.grd" ]
-then
- python "${PROJECT_DIR}/../tools/grit/grit.py" \
- -i "${PROJECT_DIR}/glue/webkit_resources.grd" build \
- -o "${GRIT_DIR}"
-fi

Powered by Google App Engine
This is Rietveld 408576698