| 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 'targets': [ | |
| 7 { | |
| 8 # GN version: //components/plugins/common | |
| 9 'target_name': 'plugins_common', | |
| 10 'type': 'static_library', | |
| 11 'include_dirs': [ | |
| 12 '..', | |
| 13 ], | |
| 14 'sources': [ | |
| 15 'plugins/common/plugins_switches.cc', | |
| 16 'plugins/common/plugins_switches.h', | |
| 17 ], | |
| 18 }, | |
| 19 ], | |
| 20 'conditions': [ | 6 'conditions': [ |
| 21 ['OS!="ios"', { | 7 ['OS!="ios"', { |
| 22 'targets': [ | 8 'targets': [ |
| 23 { | 9 { |
| 24 # GN version: //components/plugins/renderer | 10 # GN version: //components/plugins/renderer |
| 25 'target_name': 'plugins_renderer', | 11 'target_name': 'plugins_renderer', |
| 26 'type': 'static_library', | 12 'type': 'static_library', |
| 27 'dependencies': [ | 13 'dependencies': [ |
| 28 '../gin/gin.gyp:gin', | 14 '../gin/gin.gyp:gin', |
| 29 '../skia/skia.gyp:skia', | 15 '../skia/skia.gyp:skia', |
| (...skipping 25 matching lines...) Expand all Loading... |
| 55 'plugins/renderer/mobile_youtube_plugin.cc', | 41 'plugins/renderer/mobile_youtube_plugin.cc', |
| 56 'plugins/renderer/mobile_youtube_plugin.h', | 42 'plugins/renderer/mobile_youtube_plugin.h', |
| 57 ] | 43 ] |
| 58 }], | 44 }], |
| 59 ], | 45 ], |
| 60 }, | 46 }, |
| 61 ], | 47 ], |
| 62 }], | 48 }], |
| 63 ], | 49 ], |
| 64 } | 50 } |
| OLD | NEW |