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 { | 5 { |
6 'target_defaults': { | 6 'target_defaults': { |
7 # Disable narrowing-conversion-in-initialization-list warnings in that we | 7 # Disable narrowing-conversion-in-initialization-list warnings in that we |
8 # do not want to fix it in data file "webcursor_gtk_data.h". | 8 # do not want to fix it in data file "webcursor_gtk_data.h". |
9 'cflags+': ['-Wno-narrowing'], | 9 'cflags+': ['-Wno-narrowing'], |
10 'cflags_cc+': ['-Wno-narrowing'], | 10 'cflags_cc+': ['-Wno-narrowing'], |
(...skipping 26 matching lines...) Expand all Loading... |
37 '<(DEPTH)/webkit/common/webkit_common.gyp:webkit_common', | 37 '<(DEPTH)/webkit/common/webkit_common.gyp:webkit_common', |
38 ], | 38 ], |
39 | 39 |
40 'include_dirs': [ | 40 'include_dirs': [ |
41 # For JNI generated header. | 41 # For JNI generated header. |
42 '<(SHARED_INTERMEDIATE_DIR)/webkit', | 42 '<(SHARED_INTERMEDIATE_DIR)/webkit', |
43 ], | 43 ], |
44 'hard_dependency': 1, | 44 'hard_dependency': 1, |
45 | 45 |
46 'sources': [ | 46 'sources': [ |
47 '../child/fling_animator_impl_android.cc', | |
48 '../child/fling_animator_impl_android.h', | |
49 '../child/fling_curve_configuration.cc', | |
50 '../child/fling_curve_configuration.h', | |
51 '../child/ftp_directory_listing_response_delegate.cc', | 47 '../child/ftp_directory_listing_response_delegate.cc', |
52 '../child/ftp_directory_listing_response_delegate.h', | 48 '../child/ftp_directory_listing_response_delegate.h', |
53 '../child/multipart_response_delegate.cc', | 49 '../child/multipart_response_delegate.cc', |
54 '../child/multipart_response_delegate.h', | 50 '../child/multipart_response_delegate.h', |
55 '../child/resource_loader_bridge.cc', | 51 '../child/resource_loader_bridge.cc', |
56 '../child/resource_loader_bridge.h', | 52 '../child/resource_loader_bridge.h', |
57 '../child/touch_fling_gesture_curve.cc', | |
58 '../child/touch_fling_gesture_curve.h', | |
59 '../child/web_discardable_memory_impl.cc', | 53 '../child/web_discardable_memory_impl.cc', |
60 '../child/web_discardable_memory_impl.h', | 54 '../child/web_discardable_memory_impl.h', |
61 '../child/webfallbackthemeengine_impl.cc', | 55 '../child/webfallbackthemeengine_impl.cc', |
62 '../child/webfallbackthemeengine_impl.h', | 56 '../child/webfallbackthemeengine_impl.h', |
63 '../child/webkit_child_export.h', | 57 '../child/webkit_child_export.h', |
64 '../child/webkit_child_helpers.cc', | 58 '../child/webkit_child_helpers.cc', |
65 '../child/webkit_child_helpers.h', | 59 '../child/webkit_child_helpers.h', |
66 '../child/webkitplatformsupport_child_impl.cc', | 60 '../child/webkitplatformsupport_child_impl.cc', |
67 '../child/webkitplatformsupport_child_impl.h', | 61 '../child/webkitplatformsupport_child_impl.h', |
68 '../child/webkitplatformsupport_impl.cc', | 62 '../child/webkitplatformsupport_impl.cc', |
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 'variables': { | 232 'variables': { |
239 'jni_gen_package': 'webkit', | 233 'jni_gen_package': 'webkit', |
240 'input_java_class': 'android/widget/OverScroller.class', | 234 'input_java_class': 'android/widget/OverScroller.class', |
241 }, | 235 }, |
242 'includes': [ '../../build/jar_file_jni_generator.gypi' ], | 236 'includes': [ '../../build/jar_file_jni_generator.gypi' ], |
243 }, | 237 }, |
244 ], | 238 ], |
245 }], | 239 }], |
246 ], | 240 ], |
247 } | 241 } |
OLD | NEW |