| 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 'dependencies': [ | 6 'dependencies': [ |
| 7 '../base/base.gyp:base', | 7 '../base/base.gyp:base', |
| 8 '../components/tracing.gyp:tracing', | 8 '../components/tracing.gyp:tracing', |
| 9 '../skia/skia.gyp:skia', | 9 '../skia/skia.gyp:skia', |
| 10 '../ui/ui.gyp:ui', | 10 '../ui/ui.gyp:ui', |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 'child/thread_safe_sender.cc', | 130 'child/thread_safe_sender.cc', |
| 131 'child/thread_safe_sender.h', | 131 'child/thread_safe_sender.h', |
| 132 'child/web_database_observer_impl.cc', | 132 'child/web_database_observer_impl.cc', |
| 133 'child/web_database_observer_impl.h', | 133 'child/web_database_observer_impl.h', |
| 134 'child/webblobregistry_impl.cc', | 134 'child/webblobregistry_impl.cc', |
| 135 'child/webblobregistry_impl.h', | 135 'child/webblobregistry_impl.h', |
| 136 'child/webkitplatformsupport_impl.cc', | 136 'child/webkitplatformsupport_impl.cc', |
| 137 'child/webkitplatformsupport_impl.h', | 137 'child/webkitplatformsupport_impl.h', |
| 138 'child/webmessageportchannel_impl.cc', | 138 'child/webmessageportchannel_impl.cc', |
| 139 'child/webmessageportchannel_impl.h', | 139 'child/webmessageportchannel_impl.h', |
| 140 'child/websocket_bridge.cc', |
| 141 'child/websocket_bridge.h', |
| 142 'child/websocket_dispatcher.cc', |
| 143 'child/websocket_dispatcher.h', |
| 140 'public/child/image_decoder_utils.h', | 144 'public/child/image_decoder_utils.h', |
| 141 'public/child/resource_dispatcher_delegate.h', | 145 'public/child/resource_dispatcher_delegate.h', |
| 142 ], | 146 ], |
| 143 'conditions': [ | 147 'conditions': [ |
| 144 ['OS=="android"', { | 148 ['OS=="android"', { |
| 145 'includes': [ | 149 'includes': [ |
| 146 '../build/android/cpufeatures.gypi', | 150 '../build/android/cpufeatures.gypi', |
| 147 ], | 151 ], |
| 148 }], | 152 }], |
| 149 ['enable_plugins==0', { | 153 ['enable_plugins==0', { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 174 'child/npapi/webplugin_delegate_impl_mac.mm', | 178 'child/npapi/webplugin_delegate_impl_mac.mm', |
| 175 ], | 179 ], |
| 176 }], | 180 }], |
| 177 ['use_aura==1 and OS=="win"', { | 181 ['use_aura==1 and OS=="win"', { |
| 178 'sources!': [ | 182 'sources!': [ |
| 179 'child/npapi/webplugin_delegate_impl_aura.cc', | 183 'child/npapi/webplugin_delegate_impl_aura.cc', |
| 180 ], | 184 ], |
| 181 }], | 185 }], |
| 182 ], | 186 ], |
| 183 } | 187 } |
| OLD | NEW |