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

Side by Side Diff: android_webview/lib/android_webview.gyp

Issue 10825155: Build target for Android WebView. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove chrome/ changes Created 8 years, 4 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « android_webview/lib/DEPS ('k') | android_webview/lib/main/webview_entry_point.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4 {
5 'variables': {
6 'chromium_code': 1,
7 },
8 'targets': [
9 {
10 # TODO(torne): This is vaguely based on the downstream android target
11 # "chromeview_core" and once that target has been upstreamed we should
12 # just depend on it instead.
13 'target_name': 'webview_core',
14 'type': 'static_library',
15 'dependencies': [
16 '../../chrome/chrome.gyp:browser',
17 '../../chrome/chrome.gyp:renderer',
18 '../../content/content.gyp:content',
19 ],
20 'include_dirs': [
21 '../..',
22 ],
23 },
24 {
25 'target_name': 'libwebview',
26 'type': 'shared_library',
27 'dependencies': [
28 'webview_core',
29 ],
30 'include_dirs': [
31 '../..',
32 ],
33 'sources': [
34 'main/webview_entry_point.cc',
35 'main/webview_main_delegate.cc',
36 'main/webview_main_delegate.h',
37 'main/webview_stubs.cc',
38 ],
39 },
40 ],
41 }
42
43 # Local Variables:
44 # tab-width:2
45 # indent-tabs-mode:nil
46 # End:
47 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « android_webview/lib/DEPS ('k') | android_webview/lib/main/webview_entry_point.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698