| 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 'conditions': [ | 7 'conditions': [ |
| 8 ['OS=="android"', { | 8 ['OS=="android"', { |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 # GN: //components/web_contents_delegate_android:web_contents_delegate
_android | 11 # GN: //components/web_contents_delegate_android:web_contents_delegate
_android |
| 12 'target_name': 'web_contents_delegate_android', | 12 'target_name': 'web_contents_delegate_android', |
| 13 'type': 'static_library', | 13 'type': 'static_library', |
| 14 'dependencies': [ | 14 'dependencies': [ |
| 15 '../base/base.gyp:base', | 15 '../base/base.gyp:base', |
| 16 '../content/content.gyp:content_browser', | 16 '../content/content.gyp:content_browser', |
| 17 '../content/content.gyp:content_common', | 17 '../content/content.gyp:content_common', |
| 18 '../net/net.gyp:net', | 18 '../net/net.gyp:net', |
| 19 '../skia/skia.gyp:skia', | 19 '../skia/skia.gyp:skia', |
| 20 '../ui/android/ui_android.gyp:ui_android', |
| 20 '../ui/base/ui_base.gyp:ui_base', | 21 '../ui/base/ui_base.gyp:ui_base', |
| 21 '../ui/gfx/gfx.gyp:gfx', | 22 '../ui/gfx/gfx.gyp:gfx', |
| 22 '../ui/gfx/gfx.gyp:gfx_geometry', | 23 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 23 'web_contents_delegate_android_jni_headers', | 24 'web_contents_delegate_android_jni_headers', |
| 24 ], | 25 ], |
| 25 'include_dirs': [ | 26 'include_dirs': [ |
| 26 '..', | 27 '..', |
| 27 '../skia/config', | 28 '../skia/config', |
| 28 ], | 29 ], |
| 29 'sources': [ | 30 'sources': [ |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 ], | 62 ], |
| 62 'variables': { | 63 'variables': { |
| 63 'jni_gen_package': 'web_contents_delegate_android', | 64 'jni_gen_package': 'web_contents_delegate_android', |
| 64 }, | 65 }, |
| 65 'includes': [ '../build/jni_generator.gypi' ], | 66 'includes': [ '../build/jni_generator.gypi' ], |
| 66 }, | 67 }, |
| 67 ], | 68 ], |
| 68 }], | 69 }], |
| 69 ], | 70 ], |
| 70 } | 71 } |
| OLD | NEW |