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