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

Side by Side Diff: components/plugins.gypi

Issue 27197004: Move renderer plugin code into a new component (re-land) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move renderer plugin code into a new component (re-land) - fix use after free Created 7 years, 2 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 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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698