OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 # Keep in sync with remoting/remoting_enable.gni. |
| 6 |
5 { | 7 { |
6 'variables': { | 8 'variables': { |
7 'enable_remoting_host%': 0, | 9 'enable_remoting_host%': 0, |
8 'enable_me2me_host%': 0, | 10 'enable_me2me_host%': 0, |
9 | 11 |
10 'conditions': [ | 12 'conditions': [ |
11 ['OS=="win" or OS=="mac"', { | 13 ['OS=="win" or OS=="mac"', { |
12 'enable_remoting_host': 1, | 14 'enable_remoting_host': 1, |
13 'enable_me2me_host': 1, | 15 'enable_me2me_host': 1, |
14 }], | 16 }], |
15 ['OS=="linux" and chromeos==0 and use_x11==1', { | 17 ['OS=="linux" and chromeos==0 and use_x11==1', { |
16 'enable_remoting_host': 1, | 18 'enable_remoting_host': 1, |
17 'enable_me2me_host': 1, | 19 'enable_me2me_host': 1, |
18 }], | 20 }], |
19 ['OS=="linux" and chromeos==1', { | 21 ['OS=="linux" and chromeos==1', { |
20 'enable_remoting_host': 1, | 22 'enable_remoting_host': 1, |
21 }], | 23 }], |
22 ], # end of conditions | 24 ], # end of conditions |
23 }, # end of variables | 25 }, # end of variables |
24 } | 26 } |
OLD | NEW |