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 'conditions': [ |
7 ['OS!="ios"', { | 7 ['OS!="ios"', { |
8 'targets': [ | 8 'targets': [ |
9 { | 9 { |
10 # GN version: //components/plugins/renderer | 10 # GN version: //components/plugins/renderer |
11 'target_name': 'plugins_renderer', | 11 'target_name': 'plugins_renderer', |
12 'type': 'static_library', | 12 'type': 'static_library', |
13 'dependencies': [ | 13 'dependencies': [ |
14 '../gin/gin.gyp:gin', | 14 '../gin/gin.gyp:gin', |
15 '../skia/skia.gyp:skia', | 15 '../skia/skia.gyp:skia', |
16 '../third_party/WebKit/public/blink.gyp:blink', | 16 '../third_party/WebKit/public/blink.gyp:blink', |
17 '../third_party/re2/re2.gyp:re2', | 17 '../third_party/re2/re2.gyp:re2', |
18 '../v8/tools/gyp/v8.gyp:v8', | 18 '../v8/src/v8.gyp:v8', |
19 ], | 19 ], |
20 'include_dirs': [ | 20 'include_dirs': [ |
21 '..', | 21 '..', |
22 ], | 22 ], |
23 'sources': [ | 23 'sources': [ |
24 # Note: sources list duplicated in GN build. | 24 # Note: sources list duplicated in GN build. |
25 'plugins/renderer/plugin_placeholder.cc', | 25 'plugins/renderer/plugin_placeholder.cc', |
26 'plugins/renderer/plugin_placeholder.h', | 26 'plugins/renderer/plugin_placeholder.h', |
27 'plugins/renderer/webview_plugin.cc', | 27 'plugins/renderer/webview_plugin.cc', |
28 'plugins/renderer/webview_plugin.h', | 28 'plugins/renderer/webview_plugin.h', |
(...skipping 12 matching lines...) Expand all Loading... |
41 'plugins/renderer/mobile_youtube_plugin.cc', | 41 'plugins/renderer/mobile_youtube_plugin.cc', |
42 'plugins/renderer/mobile_youtube_plugin.h', | 42 'plugins/renderer/mobile_youtube_plugin.h', |
43 ] | 43 ] |
44 }], | 44 }], |
45 ], | 45 ], |
46 }, | 46 }, |
47 ], | 47 ], |
48 }], | 48 }], |
49 ], | 49 ], |
50 } | 50 } |
OLD | NEW |