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

Side by Side Diff: components/plugins.gypi

Issue 142223002: Support -Goutput_dir=blahblah in GN-GYP hybrid mode (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: prefer command line over env if both are specified Created 6 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « chrome/tools/profile_reset/jtl_compiler.gyp ('k') | components/url_matcher.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'conditions': [ 6 'conditions': [
7 ['OS != "ios"', { 7 ['OS != "ios"', {
8 8
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'plugins_renderer', 11 'target_name': 'plugins_renderer',
12 'type': 'static_library', 12 'type': 'static_library',
13 'dependencies': [ 13 'dependencies': [
14 '../<(gyp_output_dir)/gn_gyp/third_party/re2/re2.gyp:re2',
14 '../gin/gin.gyp:gin', 15 '../gin/gin.gyp:gin',
15 '../skia/skia.gyp:skia', 16 '../skia/skia.gyp:skia',
16 '../out/gn_gyp/third_party/re2/re2.gyp:re2',
17 '../third_party/WebKit/public/blink.gyp:blink', 17 '../third_party/WebKit/public/blink.gyp:blink',
18 '../v8/tools/gyp/v8.gyp:v8', 18 '../v8/tools/gyp/v8.gyp:v8',
19 ], 19 ],
20 'include_dirs': [ 20 'include_dirs': [
21 '..', 21 '..',
22 ], 22 ],
23 'sources': [ 23 'sources': [
24 'plugins/renderer/plugin_placeholder.cc', 24 'plugins/renderer/plugin_placeholder.cc',
25 'plugins/renderer/plugin_placeholder.h', 25 'plugins/renderer/plugin_placeholder.h',
26 'plugins/renderer/webview_plugin.cc', 26 'plugins/renderer/webview_plugin.cc',
27 'plugins/renderer/webview_plugin.h', 27 'plugins/renderer/webview_plugin.h',
28 ], 28 ],
29 'conditions' : [ 29 'conditions' : [
30 ['OS=="android"', { 30 ['OS=="android"', {
31 'sources': [ 31 'sources': [
32 'plugins/renderer/mobile_youtube_plugin.cc', 32 'plugins/renderer/mobile_youtube_plugin.cc',
33 'plugins/renderer/mobile_youtube_plugin.h', 33 'plugins/renderer/mobile_youtube_plugin.h',
34 ] 34 ]
35 }], 35 }],
36 ], 36 ],
37 }, 37 },
38 ] 38 ]
39 }] 39 }]
40 ] 40 ]
41 } 41 }
OLDNEW
« no previous file with comments | « chrome/tools/profile_reset/jtl_compiler.gyp ('k') | components/url_matcher.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698