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

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/common
9 'target_name': 'plugins_common',
10 'type': 'static_library',
11 'sources': [
12 'plugins/common/plugins_switches.cc',
13 'plugins/common/plugins_switches.h',
14 'plugins/common/plugins_field_trial.cc',
15 'plugins/common/plugins_field_trial.h',
16 ],
17 'include_dirs': [
18 '..',
19 ],
20 'dependencies': [
21 '../base/base.gyp:base',
22 ],
23 },
24 {
8 # GN version: //components/plugins/renderer 25 # GN version: //components/plugins/renderer
9 'target_name': 'plugins_renderer', 26 'target_name': 'plugins_renderer',
10 'type': 'static_library', 27 'type': 'static_library',
11 'dependencies': [ 28 'dependencies': [
12 '../gin/gin.gyp:gin', 29 '../gin/gin.gyp:gin',
13 '../skia/skia.gyp:skia', 30 '../skia/skia.gyp:skia',
14 '../third_party/WebKit/public/blink.gyp:blink', 31 '../third_party/WebKit/public/blink.gyp:blink',
15 '../third_party/re2/re2.gyp:re2', 32 '../third_party/re2/re2.gyp:re2',
16 '../v8/tools/gyp/v8.gyp:v8', 33 '../v8/tools/gyp/v8.gyp:v8',
17 ], 34 ],
(...skipping 14 matching lines...) Expand all
32 'sources': [ 49 'sources': [
33 # Note: sources list duplicated in GN build. 50 # Note: sources list duplicated in GN build.
34 'plugins/renderer/mobile_youtube_plugin.cc', 51 'plugins/renderer/mobile_youtube_plugin.cc',
35 'plugins/renderer/mobile_youtube_plugin.h', 52 'plugins/renderer/mobile_youtube_plugin.h',
36 ] 53 ]
37 }], 54 }],
38 ], 55 ],
39 }, 56 },
40 ] 57 ]
41 } 58 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698