| 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': 'web_contents_delegate_android', | 
| 10       'type': 'static_library', | 10       'type': 'static_library', | 
| (...skipping 12 matching lines...) Expand all  Loading... | 
| 23         '../../../skia/config', | 23         '../../../skia/config', | 
| 24         '<(SHARED_INTERMEDIATE_DIR)/chrome/browser_component', | 24         '<(SHARED_INTERMEDIATE_DIR)/chrome/browser_component', | 
| 25       ], | 25       ], | 
| 26       'sources': [ | 26       'sources': [ | 
| 27         'component_jni_registrar.cc', | 27         'component_jni_registrar.cc', | 
| 28         'component_jni_registrar.h', | 28         'component_jni_registrar.h', | 
| 29         'web_contents_delegate_android.cc', | 29         'web_contents_delegate_android.cc', | 
| 30         'web_contents_delegate_android.h', | 30         'web_contents_delegate_android.h', | 
| 31       ], | 31       ], | 
| 32     }, | 32     }, | 
|  | 33     { | 
|  | 34       'target_name': 'web_contents_delegate_android_java', | 
|  | 35       'type': 'none', | 
|  | 36       'dependencies': [ | 
|  | 37         '<(DEPTH)/base/base.gyp:base_java', | 
|  | 38       ], | 
|  | 39       'variables': { | 
|  | 40         'package_name': 'web_contents_delegate_android', | 
|  | 41         'java_in_dir': 'java', | 
|  | 42       }, | 
|  | 43       'includes': [ '../../../../build/java.gypi' ], | 
|  | 44     }, | 
| 33   ], | 45   ], | 
| 34 } | 46 } | 
| OLD | NEW | 
|---|