| 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 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', |
| 15 '../../components/components.gyp:autofill_browser', | 15 '../../components/components.gyp:autofill_browser', |
| 16 '../../components/components.gyp:web_contents_delegate_android', | 16 '../../components/components.gyp:web_contents_delegate_android', |
| 17 '../../cc/cc.gyp:cc', | 17 '../../cc/cc.gyp:cc', |
| 18 '../../net/net.gyp:net', | 18 '../../net/net.gyp:net', |
| 19 '../../skia/skia.gyp:skia', | 19 '../../skia/skia.gyp:skia', |
| 20 '../../ui/ui.gyp:ui', | 20 '../../ui/ui.gyp:ui', |
| 21 '../../webkit/support/webkit_support.gyp:user_agent', | 21 '../../webkit/common/user_agent/webkit_user_agent.gyp:user_agent', |
| 22 '../../webkit/support/webkit_support.gyp:webkit_storage', | 22 '../../webkit/support/webkit_support.gyp:webkit_storage', |
| 23 'android_webview_native_jni', | 23 'android_webview_native_jni', |
| 24 ], | 24 ], |
| 25 'include_dirs': [ | 25 'include_dirs': [ |
| 26 '../..', | 26 '../..', |
| 27 '../../skia/config', | 27 '../../skia/config', |
| 28 '<(SHARED_INTERMEDIATE_DIR)/android_webview', | 28 '<(SHARED_INTERMEDIATE_DIR)/android_webview', |
| 29 ], | 29 ], |
| 30 'sources': [ | 30 'sources': [ |
| 31 'android_protocol_handler.cc', | 31 'android_protocol_handler.cc', |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 'variables': { | 99 'variables': { |
| 100 'jni_gen_package': 'android_webview', | 100 'jni_gen_package': 'android_webview', |
| 101 }, | 101 }, |
| 102 'includes': [ '../../build/jni_generator.gypi' ], | 102 'includes': [ '../../build/jni_generator.gypi' ], |
| 103 'dependencies': [ | 103 'dependencies': [ |
| 104 'android_jar_jni_headers', | 104 'android_jar_jni_headers', |
| 105 ], | 105 ], |
| 106 }, | 106 }, |
| 107 ], | 107 ], |
| 108 } | 108 } |
| OLD | NEW |