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

Side by Side Diff: components/plugins.gypi

Issue 1158063002: Add plugins::TestPluginPlaceholder class and allow its use in Blink layout tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@pluginfix
Patch Set: Created 5 years, 6 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
1 # Copyright 2013 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/plugins/common 8 # GN version: //components/plugins/common
9 'target_name': 'plugins_common', 9 'target_name': 'plugins_common',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 }], 51 }],
52 ['OS=="android"', { 52 ['OS=="android"', {
53 'sources': [ 53 'sources': [
54 # Note: sources list duplicated in GN build. 54 # Note: sources list duplicated in GN build.
55 'plugins/renderer/mobile_youtube_plugin.cc', 55 'plugins/renderer/mobile_youtube_plugin.cc',
56 'plugins/renderer/mobile_youtube_plugin.h', 56 'plugins/renderer/mobile_youtube_plugin.h',
57 ] 57 ]
58 }], 58 }],
59 ], 59 ],
60 }, 60 },
61 {
62 # GN version: //components/plugins/renderer
tommycli 2015/05/26 20:08:18 This isn't in the GN file.
63 'target_name': 'test_plugins_renderer',
64 'type': 'static_library',
65 'dependencies': [
66 'plugins_renderer',
67 '../third_party/WebKit/public/blink.gyp:blink',
68
69 ],
70 'include_dirs': [
71 '..',
72 ],
73 'sources': [
74 # Note: sources list duplicated in GN build.
75 'plugins/renderer/test_plugin_placeholder.cc',
76 'plugins/renderer/test_plugin_placeholder.h',
77 ],
78 }
61 ], 79 ],
62 }], 80 }],
63 ], 81 ],
64 } 82 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698