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