| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 | 8 |
| 9 # Set this to run the jscompile checks after building the webapp. | 9 # Set this to run the jscompile checks after building the webapp. |
| 10 'run_jscompile%': 0, | 10 'run_jscompile%': 1, |
| 11 | 11 |
| 12 # Set this to enable cast mode on the android client. | 12 # Set this to enable cast mode on the android client. |
| 13 'enable_cast%': 0, | 13 'enable_cast%': 0, |
| 14 | 14 |
| 15 'variables': { | 15 'variables': { |
| 16 'conditions': [ | 16 'conditions': [ |
| 17 # Enable the multi-process host on Windows by default. | 17 # Enable the multi-process host on Windows by default. |
| 18 ['OS=="win"', { | 18 ['OS=="win"', { |
| 19 'remoting_multi_process%': 1, | 19 'remoting_multi_process%': 1, |
| 20 }, { | 20 }, { |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 ], | 280 ], |
| 281 'export_dependent_settings': [ | 281 'export_dependent_settings': [ |
| 282 '../third_party/libjingle/libjingle.gyp:libjingle', | 282 '../third_party/libjingle/libjingle.gyp:libjingle', |
| 283 ], | 283 ], |
| 284 'sources': [ | 284 'sources': [ |
| 285 '<@(remoting_protocol_sources)', | 285 '<@(remoting_protocol_sources)', |
| 286 ], | 286 ], |
| 287 }, # end of target 'remoting_protocol' | 287 }, # end of target 'remoting_protocol' |
| 288 ], # end of targets | 288 ], # end of targets |
| 289 } | 289 } |
| OLD | NEW |