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

Side by Side Diff: components/plugins.gypi

Issue 1033103002: Plugin Power Saver: Overhaul plugin-power-saver flags. Show in UI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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/renderer 8 # GN version: //components/plugins/renderer
9 'target_name': 'plugins_renderer', 9 'target_name': 'plugins_renderer',
10 'type': 'static_library', 10 'type': 'static_library',
11 'dependencies': [ 11 'dependencies': [
12 '../gin/gin.gyp:gin', 12 '../gin/gin.gyp:gin',
13 '../skia/skia.gyp:skia', 13 '../skia/skia.gyp:skia',
14 '../third_party/WebKit/public/blink.gyp:blink', 14 '../third_party/WebKit/public/blink.gyp:blink',
15 '../third_party/re2/re2.gyp:re2', 15 '../third_party/re2/re2.gyp:re2',
16 '../v8/tools/gyp/v8.gyp:v8', 16 '../v8/tools/gyp/v8.gyp:v8',
17 ], 17 ],
18 'include_dirs': [ 18 'include_dirs': [
19 '..', 19 '..',
20 ], 20 ],
21 'sources': [ 21 'sources': [
22 # Note: sources list duplicated in GN build. 22 # Note: sources list duplicated in GN build.
23 'plugins/common/plugins_switches.cc',
24 'plugins/common/plugins_switches.h',
25 'plugins/common/plugins_field_trial.cc',
26 'plugins/common/plugins_field_trial.h',
23 'plugins/renderer/loadable_plugin_placeholder.cc', 27 'plugins/renderer/loadable_plugin_placeholder.cc',
24 'plugins/renderer/loadable_plugin_placeholder.h', 28 'plugins/renderer/loadable_plugin_placeholder.h',
25 'plugins/renderer/plugin_placeholder.cc', 29 'plugins/renderer/plugin_placeholder.cc',
26 'plugins/renderer/plugin_placeholder.h', 30 'plugins/renderer/plugin_placeholder.h',
27 'plugins/renderer/webview_plugin.cc', 31 'plugins/renderer/webview_plugin.cc',
28 'plugins/renderer/webview_plugin.h', 32 'plugins/renderer/webview_plugin.h',
29 ], 33 ],
30 'conditions' : [ 34 'conditions' : [
31 ['OS=="android"', { 35 ['OS=="android"', {
32 'sources': [ 36 'sources': [
33 # Note: sources list duplicated in GN build. 37 # Note: sources list duplicated in GN build.
34 'plugins/renderer/mobile_youtube_plugin.cc', 38 'plugins/renderer/mobile_youtube_plugin.cc',
35 'plugins/renderer/mobile_youtube_plugin.h', 39 'plugins/renderer/mobile_youtube_plugin.h',
36 ] 40 ]
37 }], 41 }],
38 ], 42 ],
39 }, 43 },
40 ] 44 ]
41 } 45 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698