| 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 'child/thread_safe_sender.cc', | 127 'child/thread_safe_sender.cc', |
| 128 'child/thread_safe_sender.h', | 128 'child/thread_safe_sender.h', |
| 129 'child/web_database_observer_impl.cc', | 129 'child/web_database_observer_impl.cc', |
| 130 'child/web_database_observer_impl.h', | 130 'child/web_database_observer_impl.h', |
| 131 'child/webblobregistry_impl.cc', | 131 'child/webblobregistry_impl.cc', |
| 132 'child/webblobregistry_impl.h', | 132 'child/webblobregistry_impl.h', |
| 133 'child/webkitplatformsupport_impl.cc', | 133 'child/webkitplatformsupport_impl.cc', |
| 134 'child/webkitplatformsupport_impl.h', | 134 'child/webkitplatformsupport_impl.h', |
| 135 'child/webmessageportchannel_impl.cc', | 135 'child/webmessageportchannel_impl.cc', |
| 136 'child/webmessageportchannel_impl.h', | 136 'child/webmessageportchannel_impl.h', |
| 137 'child/websocket_dispatcher.cc', |
| 138 'child/websocket_dispatcher.h', |
| 137 'public/child/image_decoder_utils.h', | 139 'public/child/image_decoder_utils.h', |
| 138 'public/child/resource_dispatcher_delegate.h', | 140 'public/child/resource_dispatcher_delegate.h', |
| 139 ], | 141 ], |
| 140 'conditions': [ | 142 'conditions': [ |
| 141 ['OS=="android"', { | 143 ['OS=="android"', { |
| 142 'includes': [ | 144 'includes': [ |
| 143 '../build/android/cpufeatures.gypi', | 145 '../build/android/cpufeatures.gypi', |
| 144 ], | 146 ], |
| 145 }], | 147 }], |
| 146 ['enable_plugins==0', { | 148 ['enable_plugins==0', { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 171 'child/npapi/webplugin_delegate_impl_mac.mm', | 173 'child/npapi/webplugin_delegate_impl_mac.mm', |
| 172 ], | 174 ], |
| 173 }], | 175 }], |
| 174 ['use_aura==1 and OS=="win"', { | 176 ['use_aura==1 and OS=="win"', { |
| 175 'sources!': [ | 177 'sources!': [ |
| 176 'child/npapi/webplugin_delegate_impl_aura.cc', | 178 'child/npapi/webplugin_delegate_impl_aura.cc', |
| 177 ], | 179 ], |
| 178 }], | 180 }], |
| 179 ], | 181 ], |
| 180 } | 182 } |
| OLD | NEW |