OLD | NEW |
---|---|
(Empty) | |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 { | |
6 'conditions': [ | |
7 ['OS != "ios"', { | |
8 | |
9 'targets': [ | |
10 { | |
11 'target_name': 'plugins_renderer', | |
12 'type': 'static_library', | |
13 'dependencies': [ | |
14 '../skia/skia.gyp:skia', | |
15 '../third_party/re2/re2.gyp:re2', | |
16 '../third_party/WebKit/public/blink.gyp:blink', | |
17 ], | |
18 'include_dirs': [ | |
19 '..', | |
20 ], | |
21 'sources': [ | |
22 'plugins/renderer/plugin_placeholder.cc', | |
Jói
2013/10/15 19:11:50
Note: If all the code in this component is going t
| |
23 'plugins/renderer/plugin_placeholder.h', | |
24 'plugins/renderer/webview_plugin.cc', | |
25 'plugins/renderer/webview_plugin.h', | |
26 ], | |
27 'conditions' : [ | |
28 ['OS=="android"', { | |
29 'sources': [ | |
30 'plugins/renderer/mobile_youtube_plugin.cc', | |
31 'plugins/renderer/mobile_youtube_plugin.h', | |
32 ] | |
33 }], | |
34 ], | |
35 }, | |
36 ] | |
37 }] | |
38 ] | |
39 } | |
OLD | NEW |