| 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/gfx/gfx.gyp:gfx', | 10 '../ui/gfx/gfx.gyp:gfx', |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 ['OS=="ios"', { | 171 ['OS=="ios"', { |
| 172 'sources/': [ | 172 'sources/': [ |
| 173 # iOS only needs a small portion of content; exclude all the | 173 # iOS only needs a small portion of content; exclude all the |
| 174 # implementation, and re-include what is used. | 174 # implementation, and re-include what is used. |
| 175 ['exclude', '\\.(cc|mm)$'], | 175 ['exclude', '\\.(cc|mm)$'], |
| 176 ], | 176 ], |
| 177 }, { # OS!="ios" | 177 }, { # OS!="ios" |
| 178 'dependencies': [ | 178 'dependencies': [ |
| 179 '../third_party/WebKit/public/blink.gyp:blink', | 179 '../third_party/WebKit/public/blink.gyp:blink', |
| 180 '../third_party/npapi/npapi.gyp:npapi', | 180 '../third_party/npapi/npapi.gyp:npapi', |
| 181 '../webkit/child/webkit_child.gyp:webkit_child', |
| 181 '../webkit/common/webkit_common.gyp:webkit_common', | 182 '../webkit/common/webkit_common.gyp:webkit_common', |
| 182 '../webkit/glue/webkit_glue.gyp:glue_child', | |
| 183 ], | 183 ], |
| 184 }], | 184 }], |
| 185 ['use_aura==1', { | 185 ['use_aura==1', { |
| 186 'sources!': [ | 186 'sources!': [ |
| 187 'child/npapi/webplugin_delegate_impl_mac.mm', | 187 'child/npapi/webplugin_delegate_impl_mac.mm', |
| 188 ], | 188 ], |
| 189 }], | 189 }], |
| 190 ['use_aura==1 and OS=="win"', { | 190 ['use_aura==1 and OS=="win"', { |
| 191 'sources!': [ | 191 'sources!': [ |
| 192 'child/npapi/webplugin_delegate_impl_aura.cc', | 192 'child/npapi/webplugin_delegate_impl_aura.cc', |
| 193 ], | 193 ], |
| 194 }], | 194 }], |
| 195 ], | 195 ], |
| 196 } | 196 } |
| OLD | NEW |