| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 { | 6 { |
| 7 'targets': [ | 7 'targets': [ |
| 8 { | 8 { |
| 9 'target_name': 'web_contents_delegate_android', | 9 'target_name': 'navigation_interception', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| 11 'dependencies': [ | 11 'dependencies': [ |
| 12 '../../../base/base.gyp:base', | 12 '../../../base/base.gyp:base', |
| 13 '../../../content/content.gyp:content_browser', | 13 '../../../content/content.gyp:content_browser', |
| 14 '../../../content/content.gyp:content_common', | 14 '../../../content/content.gyp:content_common', |
| 15 '../../../net/net.gyp:net', | 15 '../../../net/net.gyp:net', |
| 16 '../../../skia/skia.gyp:skia', | |
| 17 '../../../ui/ui.gyp:ui', | |
| 18 '../../../webkit/support/webkit_support.gyp:glue', | |
| 19 'browser_component_jni_headers', | |
| 20 ], | 16 ], |
| 21 'include_dirs': [ | 17 'include_dirs': [ |
| 22 '../../..', | 18 '../../../..', |
| 23 '../../../skia/config', | 19 '../../../../skia/config', |
| 24 '<(SHARED_INTERMEDIATE_DIR)/chrome/browser_component', | 20 '<(SHARED_INTERMEDIATE_DIR)/chrome/browser_component', |
| 21 |
| 25 ], | 22 ], |
| 26 'sources': [ | 23 'sources': [ |
| 27 'component_jni_registrar.cc', | 24 'component_jni_registrar.cc', |
| 28 'component_jni_registrar.h', | 25 'component_jni_registrar.h', |
| 29 'web_contents_delegate_android.cc', | 26 'intercept_navigation_resource_throttle.cc', |
| 30 'web_contents_delegate_android.h', | 27 'intercept_navigation_resource_throttle.h', |
| 28 'intercept_navigation_delegate.cc', |
| 29 'intercept_navigation_delegate.h', |
| 31 ], | 30 ], |
| 32 }, | 31 }, |
| 33 { | 32 { |
| 34 'target_name': 'web_contents_delegate_android_java', | 33 'target_name': 'navigation_interception_java', |
| 35 'type': 'none', | 34 'type': 'none', |
| 36 'dependencies': [ | 35 'dependencies': [ |
| 37 '<(DEPTH)/base/base.gyp:base', | 36 '../../../base/base.gyp:base', |
| 38 ], | 37 ], |
| 39 'variables': { | 38 'variables': { |
| 40 'package_name': 'web_contents_delegate_android', | 39 'package_name': 'navigation_interception', |
| 41 'java_in_dir': 'java', | 40 'java_in_dir': 'java', |
| 42 }, | 41 }, |
| 43 'includes': [ '../../../../build/java.gypi' ], | 42 'includes': [ '../../../../build/java.gypi' ], |
| 44 }, | 43 }, |
| 45 ], | 44 ], |
| 46 } | 45 } |
| OLD | NEW |