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