| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 'websocketstreamhandle_impl.cc', | 80 'websocketstreamhandle_impl.cc', |
| 81 'websocketstreamhandle_impl.h', | 81 'websocketstreamhandle_impl.h', |
| 82 'webthread_impl.cc', | 82 'webthread_impl.cc', |
| 83 'webthread_impl.h', | 83 'webthread_impl.h', |
| 84 'weburlloader_impl.cc', | 84 'weburlloader_impl.cc', |
| 85 'weburlloader_impl.h', | 85 'weburlloader_impl.h', |
| 86 'weburlrequest_extradata_impl.cc', | 86 'weburlrequest_extradata_impl.cc', |
| 87 'weburlrequest_extradata_impl.h', | 87 'weburlrequest_extradata_impl.h', |
| 88 'weburlresponse_extradata_impl.cc', | 88 'weburlresponse_extradata_impl.cc', |
| 89 'weburlresponse_extradata_impl.h', | 89 'weburlresponse_extradata_impl.h', |
| 90 'worker_task_runner.cc', | |
| 91 'worker_task_runner.h', | |
| 92 ], | 90 ], |
| 93 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 91 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 94 'msvs_disabled_warnings': [ 4267 ], | 92 'msvs_disabled_warnings': [ 4267 ], |
| 95 'conditions': [ | 93 'conditions': [ |
| 96 ['OS=="mac"', | 94 ['OS=="mac"', |
| 97 { | 95 { |
| 98 'link_settings': { | 96 'link_settings': { |
| 99 'libraries': [ | 97 'libraries': [ |
| 100 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', | 98 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', |
| 101 ], | 99 ], |
| 102 }, | 100 }, |
| 103 } | 101 } |
| 104 ], | 102 ], |
| 105 ['OS=="android"', | 103 ['OS=="android"', |
| 106 { | 104 { |
| 107 'dependencies': [ | 105 'dependencies': [ |
| 108 'overscroller_jni_headers', | 106 'overscroller_jni_headers', |
| 109 ], | 107 ], |
| 110 } | 108 } |
| 111 ], | 109 ], |
| 112 ], | 110 ], |
| 113 }, | 111 }, |
| 114 ], | 112 ], |
| 115 } | 113 } |
| OLD | NEW |