Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(104)

Side by Side Diff: components/plugins.gypi

Issue 23606022: Move renderer plugin code into a new component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move renderer plugin code into a new component - put back wrongly deleted DEPS file Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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',
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.cc',
22 'plugins/renderer/plugin_uma.h',
23 'plugins/renderer/webview_plugin.cc',
24 'plugins/renderer/webview_plugin.h',
25 ],
26 'conditions' : [
27 ['OS=="android"', {
28 'defines': [
29 'ENABLE_MOBILE_YOUTUBE_PLUGIN',
30 ],
31 }],
32 ],
33 },
34 ]
35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698