OLD | NEW |
(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 'android_webview_native_jni', |
| 15 ], |
| 16 'include_dirs': [ |
| 17 '../..', |
| 18 '../../skia/config', |
| 19 '<(SHARED_INTERMEDIATE_DIR)/android_webview', |
| 20 ], |
| 21 'sources': [ |
| 22 'android_webview_jni_registrar.cc', |
| 23 'android_webview_jni_registrar.h', |
| 24 'webview_web_contents_delegate_android.cc', |
| 25 'webview_web_contents_delegate_android.h', |
| 26 ], |
| 27 }, |
| 28 { |
| 29 'target_name': 'android_webview_native_jni', |
| 30 'type': 'none', |
| 31 'sources': [ |
| 32 ], |
| 33 'variables': { |
| 34 'jni_gen_dir': 'android_webview', |
| 35 }, |
| 36 'includes': [ '../../build/jni_generator.gypi' ], |
| 37 }, |
| 38 ], |
| 39 } |
OLD | NEW |