blob: c4d57b4e157bc5e550bc5eae6a7a553e99913cfb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
# Copyright (c) 2008 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"
# Allow framework-style #include of <WebCore/WebCoreSystemInterface.h>
FORWARDING_DIR="${GENERATED_DIR}/webcoresysteminterface"
mkdir -p "${FORWARDING_DIR}"
cd "${FORWARDING_DIR}"
ln -fhs "../../../../../third_party/WebKit/WebCore/platform/mac" "WebCore"
|