| 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 | 7 |
| 8 'branding_path': '../remoting/branding_<(branding)', | 8 'branding_path': '../remoting/branding_<(branding)', |
| 9 | 9 |
| 10 'conditions': [ | 10 'conditions': [ |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 'remoting_webapp_files.gypi', | 42 'remoting_webapp_files.gypi', |
| 43 ], | 43 ], |
| 44 | 44 |
| 45 'target_defaults': { | 45 'target_defaults': { |
| 46 'defines': [ | 46 'defines': [ |
| 47 'BINARY_CORE=1', | 47 'BINARY_CORE=1', |
| 48 'BINARY_DESKTOP=2', | 48 'BINARY_DESKTOP=2', |
| 49 'BINARY_HOST_ME2ME=3', | 49 'BINARY_HOST_ME2ME=3', |
| 50 'BINARY_NATIVE_MESSAGING_HOST=4', | 50 'BINARY_NATIVE_MESSAGING_HOST=4', |
| 51 'BINARY_REMOTE_ASSISTANCE_HOST=5', | 51 'BINARY_REMOTE_ASSISTANCE_HOST=5', |
| 52 'BINARY_REMOTE_SECURITY_KEY=6', |
| 53 'BINARY_REMOTING_START_HOST=7', |
| 52 ], | 54 ], |
| 53 'include_dirs': [ | 55 'include_dirs': [ |
| 54 '..', # Root of Chrome checkout | 56 '..', # Root of Chrome checkout |
| 55 ], | 57 ], |
| 56 'variables': { | 58 'variables': { |
| 57 'win_debug_RuntimeChecks': '0', | 59 'win_debug_RuntimeChecks': '0', |
| 58 }, | 60 }, |
| 59 'conditions': [ | 61 'conditions': [ |
| 60 ['OS=="mac" and mac_breakpad==1', { | 62 ['OS=="mac" and mac_breakpad==1', { |
| 61 'defines': [ | 63 'defines': [ |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 'conditions': [ | 253 'conditions': [ |
| 252 ['enable_webrtc == 1', { | 254 ['enable_webrtc == 1', { |
| 253 'dependencies': [ | 255 'dependencies': [ |
| 254 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc', | 256 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc', |
| 255 ], | 257 ], |
| 256 }], | 258 }], |
| 257 ], | 259 ], |
| 258 }, # end of target 'remoting_protocol' | 260 }, # end of target 'remoting_protocol' |
| 259 ], # end of targets | 261 ], # end of targets |
| 260 } | 262 } |
| OLD | NEW |