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

Side by Side Diff: android_webview/native/webview_native.gyp

Issue 10831060: Refactor the Android port to allow access to the chrome layer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nit fixed. 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
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 'target_name': 'webview_native',
11 'type': 'static_library',
12 'dependencies': [
13 '../../base/base.gyp:base_static',
14 '../../chrome/browser/component/components.gyp:web_contents_delegate_and roid',
15 'android_webview_native_jni',
16 ],
17 'include_dirs': [
18 '../..',
19 '../../skia/config',
20 '<(SHARED_INTERMEDIATE_DIR)/android_webview',
21 ],
22 'sources': [
23 'android_webview_jni_registrar.cc',
24 'android_webview_jni_registrar.h',
25 'aw_web_contents_delegate.cc',
26 'aw_web_contents_delegate.h',
27 ],
28 },
29 {
30 'target_name': 'android_webview_native_jni',
31 'type': 'none',
32 'sources': [
33 ],
34 'variables': {
35 'jni_gen_dir': 'android_webview',
36 },
37 'includes': [ '../../build/jni_generator.gypi' ],
38 },
39 ],
40 }
OLDNEW
« no previous file with comments | « android_webview/native/aw_web_contents_delegate.cc ('k') | base/android/jni_generator/jni_generator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698