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

Side by Side Diff: remoting/remoting_enable.gypi

Issue 896743004: [Chromoting] Remove wildcard ('*') from remoting_all target. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add remoting_enable.gypi Created 5 years, 10 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
« no previous file with comments | « remoting/remoting_all.gyp ('k') | remoting/remoting_host.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2015 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.
4
5 {
6 'variables': {
7 'enable_remoting_host%': 0,
8 'enable_me2me_host%': 0,
9
10 'conditions': [
11 # Remoting host is supported only on Windows, OSX and Linux (with X11).
kelvinp 2015/02/06 19:15:10 This comment needs to be updated.
garykac 2015/02/06 23:53:11 Done.
12 ['OS=="win" or OS=="mac"', {
13 'enable_remoting_host': 1,
14 'enable_me2me_host': 1,
15 }],
16 ['OS=="linux" and chromeos==0 and use_x11==1', {
17 'enable_remoting_host': 1,
18 'enable_me2me_host': 1,
19 }],
20 ['OS=="linux" and chromeos==1', {
21 'enable_remoting_host': 1,
22 }],
23 ], # end of conditions
24 }, # end of variables
25 }
OLDNEW
« no previous file with comments | « remoting/remoting_all.gyp ('k') | remoting/remoting_host.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698