| 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 '../../content/content.gyp:web_contents_delegate_android', | 14 '../../content/content.gyp:web_contents_delegate_android', |
| 15 '../../skia/skia.gyp:skia', |
| 15 'android_webview_native_jni', | 16 'android_webview_native_jni', |
| 16 ], | 17 ], |
| 17 'include_dirs': [ | 18 'include_dirs': [ |
| 18 '../..', | 19 '../..', |
| 19 '../../skia/config', | 20 '../../skia/config', |
| 20 '<(SHARED_INTERMEDIATE_DIR)/android_webview', | 21 '<(SHARED_INTERMEDIATE_DIR)/android_webview', |
| 21 ], | 22 ], |
| 22 'sources': [ | 23 'sources': [ |
| 23 'android_protocol_handler.cc', | 24 'android_protocol_handler.cc', |
| 24 'android_protocol_handler.h', | 25 'android_protocol_handler.h', |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 'variables': { | 79 'variables': { |
| 79 'jni_gen_dir': 'android_webview', | 80 'jni_gen_dir': 'android_webview', |
| 80 }, | 81 }, |
| 81 'includes': [ '../../build/jni_generator.gypi' ], | 82 'includes': [ '../../build/jni_generator.gypi' ], |
| 82 'dependencies': [ | 83 'dependencies': [ |
| 83 'android_jar_jni_headers', | 84 'android_jar_jni_headers', |
| 84 ], | 85 ], |
| 85 }, | 86 }, |
| 86 ], | 87 ], |
| 87 } | 88 } |
| OLD | NEW |