Chromium Code Reviews| Index: components/plugins.gypi |
| diff --git a/components/plugins.gypi b/components/plugins.gypi |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..1dd2b68e13b3fb0afa53be2fd3892139b2ebe56f |
| --- /dev/null |
| +++ b/components/plugins.gypi |
| @@ -0,0 +1,36 @@ |
| +# Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +{ |
| + 'targets': [ |
| + { |
| + '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
|
| + 'type': 'static_library', |
| + 'dependencies': [ |
| + '../skia/skia.gyp:skia', |
| + '../third_party/re2/re2.gyp:re2', |
| + '../third_party/WebKit/public/blink.gyp:blink', |
| + ], |
| + 'include_dirs': [ |
| + '..', |
| + ], |
| + 'sources': [ |
| + 'plugins/renderer/plugin_placeholder.cc', |
| + 'plugins/renderer/plugin_placeholder.h', |
| + # '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
|
| + 'plugins/renderer/plugin_uma.cc', |
| + 'plugins/renderer/plugin_uma.h', |
| + 'plugins/renderer/webview_plugin.cc', |
| + 'plugins/renderer/webview_plugin.h', |
| + ], |
| + 'conditions' : [ |
| + ['OS=="android"', { |
| + 'defines': [ |
| + 'ENABLE_MOBILE_YOUTUBE_PLUGIN', |
| + ], |
| + }], |
| + ], |
| + }, |
| + ] |
| +} |