Removes the layout-switching to dvorak, qwerty or system qwerty.
[chromium-blink-merge.git] / components / plugins.gypi
blobe56ed092fc35854a7c89d295d13fb470433f8e17
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.
6   'conditions': [
7     ['OS != "ios"', {
8   
9       'targets': [
10         {
11           'target_name': 'plugins_renderer',
12           'type': 'static_library',
13           'dependencies': [
14             '../third_party/re2/re2.gyp:re2',
15             '../gin/gin.gyp:gin',
16             '../skia/skia.gyp:skia',
17             '../third_party/WebKit/public/blink.gyp:blink',
18             '../v8/tools/gyp/v8.gyp:v8',
19           ],
20           'include_dirs': [
21             '..',
22           ],
23           'sources': [
24             'plugins/renderer/plugin_placeholder.cc',
25             'plugins/renderer/plugin_placeholder.h',
26             'plugins/renderer/webview_plugin.cc',
27             'plugins/renderer/webview_plugin.h',
28           ],
29           'conditions' : [
30             ['OS=="android"', {
31               'sources': [
32                 'plugins/renderer/mobile_youtube_plugin.cc',
33                 'plugins/renderer/mobile_youtube_plugin.h',
34               ]
35             }],
36           ],
37         },
38       ]
39     }]
40   ]