| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 '<(DEPTH)/webkit/common/webkit_common.gyp:webkit_common', | 47 '<(DEPTH)/webkit/common/webkit_common.gyp:webkit_common', |
| 48 ], | 48 ], |
| 49 'include_dirs': [ | 49 'include_dirs': [ |
| 50 # For JNI generated header. | 50 # For JNI generated header. |
| 51 '<(SHARED_INTERMEDIATE_DIR)/webkit', | 51 '<(SHARED_INTERMEDIATE_DIR)/webkit', |
| 52 ], | 52 ], |
| 53 # This target exports a hard dependency because dependent targets may | 53 # This target exports a hard dependency because dependent targets may |
| 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', | |
| 58 'multipart_response_delegate.h', | |
| 59 'resource_loader_bridge.cc', | 57 'resource_loader_bridge.cc', |
| 60 'resource_loader_bridge.h', | 58 'resource_loader_bridge.h', |
| 61 'webkit_child_export.h', | 59 'webkit_child_export.h', |
| 62 'weburlresponse_extradata_impl.cc', | 60 'weburlresponse_extradata_impl.cc', |
| 63 'weburlresponse_extradata_impl.h', | 61 'weburlresponse_extradata_impl.h', |
| 64 ], | 62 ], |
| 65 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 63 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 66 'msvs_disabled_warnings': [ 4267 ], | 64 'msvs_disabled_warnings': [ 4267 ], |
| 67 'conditions': [ | 65 'conditions': [ |
| 68 ['OS=="mac"', | 66 ['OS=="mac"', |
| 69 { | 67 { |
| 70 'link_settings': { | 68 'link_settings': { |
| 71 'libraries': [ | 69 'libraries': [ |
| 72 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', | 70 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', |
| 73 ], | 71 ], |
| 74 }, | 72 }, |
| 75 } | 73 } |
| 76 ], | 74 ], |
| 77 ['OS=="android"', | 75 ['OS=="android"', |
| 78 { | 76 { |
| 79 'dependencies': [ | 77 'dependencies': [ |
| 80 'overscroller_jni_headers', | 78 'overscroller_jni_headers', |
| 81 ], | 79 ], |
| 82 } | 80 } |
| 83 ], | 81 ], |
| 84 ], | 82 ], |
| 85 }, | 83 }, |
| 86 ], | 84 ], |
| 87 } | 85 } |
| OLD | NEW |