OLD | NEW |
---|---|
(Empty) | |
1 #!/bin/bash | |
2 | |
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
4 # Use of this source code is governed by a BSD-style license that can be | |
5 # found in the LICENSE file. | |
6 | |
7 # This script runs gyp with the configuration required to build WebView in the | |
8 # Android build system. It is not necessary to source build/android/envsetup.sh | |
9 # before running this script. | |
10 | |
11 set -e | |
12 | |
13 export CHROME_ANDROID_BUILD_WEBVIEW=1 | |
14 export CHROME_SRC="$(readlink -f "$(dirname "$0")/../..")" | |
15 export PYTHONDONTWRITEBYTECODE=1 | |
16 . build/android/envsetup.sh | |
17 android_gyp | |
Yaron
2012/10/12 00:15:17
Did you want to set the relevant gyp generator or
Torne
2012/10/12 10:01:01
envsetup handles the webview build, when CHROME_AN
| |
OLD | NEW |