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 # TODO(dmaclach): can we pick this up some other way? Right now it's | 7 # TODO(dmaclach): can we pick this up some other way? Right now it's |
8 # duplicated from chrome.gyp | 8 # duplicated from chrome.gyp |
9 'chromium_code': 1, | 9 'chromium_code': 1, |
10 | 10 |
(...skipping 1446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1457 'remoting_host_event_logger', | 1457 'remoting_host_event_logger', |
1458 'remoting_jingle_glue', | 1458 'remoting_jingle_glue', |
1459 '../base/base.gyp:base', | 1459 '../base/base.gyp:base', |
1460 '../base/base.gyp:base_i18n', | 1460 '../base/base.gyp:base_i18n', |
1461 '../media/media.gyp:media', | 1461 '../media/media.gyp:media', |
1462 '../net/net.gyp:net', | 1462 '../net/net.gyp:net', |
1463 ], | 1463 ], |
1464 'sources': [ | 1464 'sources': [ |
1465 'host/branding.cc', | 1465 'host/branding.cc', |
1466 'host/branding.h', | 1466 'host/branding.h', |
1467 'host/sighup_listener_mac.cc', | 1467 'host/posix/sighup_listener.cc', |
1468 'host/sighup_listener_mac.h', | 1468 'host/posix/sighup_listener.h', |
1469 'host/remoting_me2me_host.cc', | 1469 'host/remoting_me2me_host.cc', |
1470 'host/usage_stats_consent.h', | 1470 'host/usage_stats_consent.h', |
1471 'host/usage_stats_consent_win.cc', | 1471 'host/usage_stats_consent_win.cc', |
1472 'host/curtain_mode_mac.h', | 1472 'host/curtain_mode_mac.h', |
1473 'host/curtain_mode_mac.cc', | 1473 'host/curtain_mode_mac.cc', |
1474 ], | 1474 ], |
1475 'conditions': [ | 1475 'conditions': [ |
| 1476 ['os_posix != 1', { |
| 1477 'sources/': [ |
| 1478 ['exclude', '^host/posix/'], |
| 1479 ], |
| 1480 }], |
1476 ['OS=="mac"', { | 1481 ['OS=="mac"', { |
1477 'mac_bundle': 1, | 1482 'mac_bundle': 1, |
1478 'conditions': [ | 1483 'conditions': [ |
1479 ['branding == "Chrome"', { | 1484 ['branding == "Chrome"', { |
1480 'variables': { | 1485 'variables': { |
1481 'host_bundle_id': 'com.google.chrome_remote_desktop.remoting_me
2me_host', | 1486 'host_bundle_id': 'com.google.chrome_remote_desktop.remoting_me
2me_host', |
1482 }, | 1487 }, |
1483 }, { # else branding!="Chrome" | 1488 }, { # else branding!="Chrome" |
1484 'variables': { | 1489 'variables': { |
1485 'host_bundle_id': 'org.chromium.chromoting.remoting_me2me_host', | 1490 'host_bundle_id': 'org.chromium.chromoting.remoting_me2me_host', |
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1857 '../base/allocator/allocator.gyp:allocator', | 1862 '../base/allocator/allocator.gyp:allocator', |
1858 ], | 1863 ], |
1859 }, | 1864 }, |
1860 ], | 1865 ], |
1861 ], | 1866 ], |
1862 }], | 1867 }], |
1863 ], # end of 'conditions' | 1868 ], # end of 'conditions' |
1864 }, # end of target 'remoting_unittests' | 1869 }, # end of target 'remoting_unittests' |
1865 ], # end of targets | 1870 ], # end of targets |
1866 } | 1871 } |
OLD | NEW |