| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'conditions': [ | 9 'conditions': [ |
| 10 ['OS=="android"', | 10 ['OS=="android"', |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 # include the header generated above. | 54 # include the header generated above. |
| 55 'hard_dependency': 1, | 55 'hard_dependency': 1, |
| 56 'sources': [ | 56 'sources': [ |
| 57 'multipart_response_delegate.cc', | 57 'multipart_response_delegate.cc', |
| 58 'multipart_response_delegate.h', | 58 'multipart_response_delegate.h', |
| 59 'resource_loader_bridge.cc', | 59 'resource_loader_bridge.cc', |
| 60 'resource_loader_bridge.h', | 60 'resource_loader_bridge.h', |
| 61 'touch_fling_gesture_curve.cc', | 61 'touch_fling_gesture_curve.cc', |
| 62 'touch_fling_gesture_curve.h', | 62 'touch_fling_gesture_curve.h', |
| 63 'webkit_child_export.h', | 63 'webkit_child_export.h', |
| 64 'weburlrequest_extradata_impl.cc', | |
| 65 'weburlrequest_extradata_impl.h', | |
| 66 'weburlresponse_extradata_impl.cc', | 64 'weburlresponse_extradata_impl.cc', |
| 67 'weburlresponse_extradata_impl.h', | 65 'weburlresponse_extradata_impl.h', |
| 68 ], | 66 ], |
| 69 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 67 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 70 'msvs_disabled_warnings': [ 4267 ], | 68 'msvs_disabled_warnings': [ 4267 ], |
| 71 'conditions': [ | 69 'conditions': [ |
| 72 ['OS=="mac"', | 70 ['OS=="mac"', |
| 73 { | 71 { |
| 74 'link_settings': { | 72 'link_settings': { |
| 75 'libraries': [ | 73 'libraries': [ |
| 76 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', | 74 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', |
| 77 ], | 75 ], |
| 78 }, | 76 }, |
| 79 } | 77 } |
| 80 ], | 78 ], |
| 81 ['OS=="android"', | 79 ['OS=="android"', |
| 82 { | 80 { |
| 83 'dependencies': [ | 81 'dependencies': [ |
| 84 'overscroller_jni_headers', | 82 'overscroller_jni_headers', |
| 85 ], | 83 ], |
| 86 } | 84 } |
| 87 ], | 85 ], |
| 88 ], | 86 ], |
| 89 }, | 87 }, |
| 90 ], | 88 ], |
| 91 } | 89 } |
| OLD | NEW |