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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 'ftp_directory_listing_response_delegate.h', | 60 'ftp_directory_listing_response_delegate.h', |
61 'multipart_response_delegate.cc', | 61 'multipart_response_delegate.cc', |
62 'multipart_response_delegate.h', | 62 'multipart_response_delegate.h', |
63 'resource_loader_bridge.cc', | 63 'resource_loader_bridge.cc', |
64 'resource_loader_bridge.h', | 64 'resource_loader_bridge.h', |
65 'touch_fling_gesture_curve.cc', | 65 'touch_fling_gesture_curve.cc', |
66 'touch_fling_gesture_curve.h', | 66 'touch_fling_gesture_curve.h', |
67 'webkit_child_export.h', | 67 'webkit_child_export.h', |
68 'webkit_child_helpers.cc', | 68 'webkit_child_helpers.cc', |
69 'webkit_child_helpers.h', | 69 'webkit_child_helpers.h', |
| 70 'webkitplatformsupport_impl.cc', |
| 71 'webkitplatformsupport_impl.h', |
| 72 'websocketstreamhandle_bridge.h', |
| 73 'websocketstreamhandle_delegate.h', |
| 74 'websocketstreamhandle_impl.cc', |
| 75 'websocketstreamhandle_impl.h', |
| 76 'weburlloader_impl.cc', |
| 77 'weburlloader_impl.h', |
70 'weburlrequest_extradata_impl.cc', | 78 'weburlrequest_extradata_impl.cc', |
71 'weburlrequest_extradata_impl.h', | 79 'weburlrequest_extradata_impl.h', |
72 'weburlresponse_extradata_impl.cc', | 80 'weburlresponse_extradata_impl.cc', |
73 'weburlresponse_extradata_impl.h', | 81 'weburlresponse_extradata_impl.h', |
74 ], | 82 ], |
75 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 83 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
76 'msvs_disabled_warnings': [ 4267 ], | 84 'msvs_disabled_warnings': [ 4267 ], |
77 'conditions': [ | 85 'conditions': [ |
78 ['OS=="mac"', | 86 ['OS=="mac"', |
79 { | 87 { |
80 'link_settings': { | 88 'link_settings': { |
81 'libraries': [ | 89 'libraries': [ |
82 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', | 90 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', |
83 ], | 91 ], |
84 }, | 92 }, |
85 } | 93 } |
86 ], | 94 ], |
87 ['OS=="android"', | 95 ['OS=="android"', |
88 { | 96 { |
89 'dependencies': [ | 97 'dependencies': [ |
90 'overscroller_jni_headers', | 98 'overscroller_jni_headers', |
91 ], | 99 ], |
92 } | 100 } |
93 ], | 101 ], |
94 ], | 102 ], |
95 }, | 103 }, |
96 ], | 104 ], |
97 } | 105 } |
OLD | NEW |