OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # |
| 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. |
| 5 |
| 6 { |
| 7 'targets': [ |
| 8 { |
| 9 'target_name': 'web_contents_delegate_android', |
| 10 'type': 'static_library', |
| 11 'dependencies': [ |
| 12 '../base/base.gyp:base', |
| 13 '../content/content.gyp:content_browser', |
| 14 '../content/content.gyp:content_common', |
| 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 ], |
| 21 'include_dirs': [ |
| 22 '../../../..', |
| 23 '../../../../skia/config', |
| 24 '<(SHARED_INTERMEDIATE_DIR)/chrome/browser_component', |
| 25 ], |
| 26 'sources': [ |
| 27 'component_jni_registrar.cc', |
| 28 'component_jni_registrar.h', |
| 29 'web_contents_delegate_android.cc', |
| 30 'web_contents_delegate_android.h', |
| 31 ], |
| 32 }, |
| 33 ], |
| 34 } |
OLD | NEW |