| 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': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 # GN version: //components/plugins/renderer |
| 8 'target_name': 'plugins_renderer', | 9 'target_name': 'plugins_renderer', |
| 9 'type': 'static_library', | 10 'type': 'static_library', |
| 10 'dependencies': [ | 11 'dependencies': [ |
| 11 '../gin/gin.gyp:gin', | 12 '../gin/gin.gyp:gin', |
| 12 '../skia/skia.gyp:skia', | 13 '../skia/skia.gyp:skia', |
| 13 '../third_party/WebKit/public/blink.gyp:blink', | 14 '../third_party/WebKit/public/blink.gyp:blink', |
| 14 '../third_party/re2/re2.gyp:re2', | 15 '../third_party/re2/re2.gyp:re2', |
| 15 '../v8/tools/gyp/v8.gyp:v8', | 16 '../v8/tools/gyp/v8.gyp:v8', |
| 16 ], | 17 ], |
| 17 'include_dirs': [ | 18 'include_dirs': [ |
| 18 '..', | 19 '..', |
| 19 ], | 20 ], |
| 20 'sources': [ | 21 'sources': [ |
| 22 # Note: sources list duplicated in GN build. |
| 21 'plugins/renderer/plugin_placeholder.cc', | 23 'plugins/renderer/plugin_placeholder.cc', |
| 22 'plugins/renderer/plugin_placeholder.h', | 24 'plugins/renderer/plugin_placeholder.h', |
| 23 'plugins/renderer/webview_plugin.cc', | 25 'plugins/renderer/webview_plugin.cc', |
| 24 'plugins/renderer/webview_plugin.h', | 26 'plugins/renderer/webview_plugin.h', |
| 25 ], | 27 ], |
| 26 'conditions' : [ | 28 'conditions' : [ |
| 27 ['OS=="android"', { | 29 ['OS=="android"', { |
| 28 'sources': [ | 30 'sources': [ |
| 31 # Note: sources list duplicated in GN build. |
| 29 'plugins/renderer/mobile_youtube_plugin.cc', | 32 'plugins/renderer/mobile_youtube_plugin.cc', |
| 30 'plugins/renderer/mobile_youtube_plugin.h', | 33 'plugins/renderer/mobile_youtube_plugin.h', |
| 31 ] | 34 ] |
| 32 }], | 35 }], |
| 33 ], | 36 ], |
| 34 }, | 37 }, |
| 35 ] | 38 ] |
| 36 } | 39 } |
| OLD | NEW |