diff options
author | torne@chromium.org <torne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-09 14:45:12 +0000 |
---|---|---|
committer | torne@chromium.org <torne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-09 14:45:12 +0000 |
commit | 635355056b542783552254d6e39e48e4121041a2 (patch) | |
tree | 5cffd081e4c8216baae39098a53b321d277d48e7 /android_webview/all_webview.gyp | |
parent | ebd8b5647ee0db5a3a7fae6447c28aa0d8cb148b (diff) | |
download | chromium_src-635355056b542783552254d6e39e48e4121041a2.zip chromium_src-635355056b542783552254d6e39e48e4121041a2.tar.gz chromium_src-635355056b542783552254d6e39e48e4121041a2.tar.bz2 |
Android: Add a webview-specific All target.
We need a separate version of the All target for building WebView in the
Android tree which only depends on the native code we intend to build.
Create one (just containing libwebview for now) and make it the default
thing to build when CHROME_ANDROID_BUILD_WEBVIEW is set.
R=mnaganov@chromium.org
BUG=
Review URL: https://codereview.chromium.org/11096024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160843 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'android_webview/all_webview.gyp')
-rw-r--r-- | android_webview/all_webview.gyp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/android_webview/all_webview.gyp b/android_webview/all_webview.gyp new file mode 100644 index 0000000..f5731c2 --- /dev/null +++ b/android_webview/all_webview.gyp @@ -0,0 +1,19 @@ +# Copyright (c) 2012 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. + +# This is used as the top-level gyp file for building WebView in the Android +# tree. It should depend only on native code, as we cannot currently generate +# correct makefiles to build Java code via gyp in the Android tree. + +{ + 'targets': [ + { + 'target_name': 'All', + 'type': 'none', + 'dependencies': [ + 'android_webview.gyp:libwebview', + ], + }, # target_name: All + ], # targets +} |