OLD | NEW |
---|---|
(Empty) | |
1 # Copyright (c) 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 'targets': [ | |
7 { | |
8 'target_name': 'plugins_renderer', | |
darin (slow to review)
2013/10/01 17:22:59
I find the name "plugins_renderer" a bit confusing
aberent
2013/10/01 18:14:55
I originally called it just "plugins" but didn't w
| |
9 'type': 'static_library', | |
10 'dependencies': [ | |
11 '../skia/skia.gyp:skia', | |
12 '../third_party/re2/re2.gyp:re2', | |
13 '../third_party/WebKit/public/blink.gyp:blink', | |
14 ], | |
15 'include_dirs': [ | |
16 '..', | |
17 ], | |
18 'sources': [ | |
19 'plugins/renderer/plugin_placeholder.cc', | |
20 'plugins/renderer/plugin_placeholder.h', | |
21 # 'plugins/renderer/plugin_uma_unittest.cc', | |
darin (slow to review)
2013/10/01 17:22:59
nit: delete this commented out line?
aberent
2013/10/01 18:14:55
Done. You appear to be looking at patch set 1. Thi
| |
22 'plugins/renderer/plugin_uma.cc', | |
23 'plugins/renderer/plugin_uma.h', | |
24 'plugins/renderer/webview_plugin.cc', | |
25 'plugins/renderer/webview_plugin.h', | |
26 ], | |
27 'conditions' : [ | |
28 ['OS=="android"', { | |
29 'defines': [ | |
30 'ENABLE_MOBILE_YOUTUBE_PLUGIN', | |
31 ], | |
32 }], | |
33 ], | |
34 }, | |
35 ] | |
36 } | |
OLD | NEW |