| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 { | 4 { |
| 5 'variables': { | 5 'variables': { |
| 6 'chromium_code': 1, | 6 'chromium_code': 1, |
| 7 }, | 7 }, |
| 8 'targets': [ | 8 'targets': [ |
| 9 { | 9 { |
| 10 'target_name': 'webview_native', | 10 'target_name': 'webview_native', |
| 11 'type': 'static_library', | 11 'type': 'static_library', |
| 12 'dependencies': [ | 12 'dependencies': [ |
| 13 '../../base/base.gyp:base_static', | 13 '../../base/base.gyp:base_static', |
| 14 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', |
| 14 '../../components/components.gyp:web_contents_delegate_android', | 15 '../../components/components.gyp:web_contents_delegate_android', |
| 16 '../../cc/cc.gyp:cc', |
| 17 '../../net/net.gyp:net', |
| 15 '../../skia/skia.gyp:skia', | 18 '../../skia/skia.gyp:skia', |
| 19 '../../webkit/support/webkit_support.gyp:user_agent', |
| 20 '../../webkit/support/webkit_support.gyp:webkit_storage', |
| 16 'android_webview_native_jni', | 21 'android_webview_native_jni', |
| 17 ], | 22 ], |
| 18 'include_dirs': [ | 23 'include_dirs': [ |
| 19 '../..', | 24 '../..', |
| 20 '../../skia/config', | 25 '../../skia/config', |
| 21 '<(SHARED_INTERMEDIATE_DIR)/android_webview', | 26 '<(SHARED_INTERMEDIATE_DIR)/android_webview', |
| 22 ], | 27 ], |
| 23 'sources': [ | 28 'sources': [ |
| 24 'android_protocol_handler.cc', | 29 'android_protocol_handler.cc', |
| 25 'android_protocol_handler.h', | 30 'android_protocol_handler.h', |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 'variables': { | 99 'variables': { |
| 95 'jni_gen_package': 'android_webview', | 100 'jni_gen_package': 'android_webview', |
| 96 }, | 101 }, |
| 97 'includes': [ '../../build/jni_generator.gypi' ], | 102 'includes': [ '../../build/jni_generator.gypi' ], |
| 98 'dependencies': [ | 103 'dependencies': [ |
| 99 'android_jar_jni_headers', | 104 'android_jar_jni_headers', |
| 100 ], | 105 ], |
| 101 }, | 106 }, |
| 102 ], | 107 ], |
| 103 } | 108 } |
| OLD | NEW |