| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'variables': { | 5 'variables': { |
| 6 'chromium_code': 1, | 6 'chromium_code': 1, |
| 7 | 7 |
| 8 'variables': { | 8 'variables': { |
| 9 'version_py_path': 'tools/build/version.py', | 9 'version_py_path': 'tools/build/version.py', |
| 10 'version_path': 'VERSION', | 10 'version_path': 'VERSION', |
| (...skipping 793 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 804 'service/cloud_print/job_status_updater.h', | 804 'service/cloud_print/job_status_updater.h', |
| 805 'service/cloud_print/print_system_dummy.cc', | 805 'service/cloud_print/print_system_dummy.cc', |
| 806 'service/cloud_print/print_system.cc', | 806 'service/cloud_print/print_system.cc', |
| 807 'service/cloud_print/print_system.h', | 807 'service/cloud_print/print_system.h', |
| 808 'service/cloud_print/printer_job_handler.cc', | 808 'service/cloud_print/printer_job_handler.cc', |
| 809 'service/cloud_print/printer_job_handler.h', | 809 'service/cloud_print/printer_job_handler.h', |
| 810 'service/gaia/service_gaia_authenticator.cc', | 810 'service/gaia/service_gaia_authenticator.cc', |
| 811 'service/gaia/service_gaia_authenticator.h', | 811 'service/gaia/service_gaia_authenticator.h', |
| 812 'service/net/service_url_request_context.cc', | 812 'service/net/service_url_request_context.cc', |
| 813 'service/net/service_url_request_context.h', | 813 'service/net/service_url_request_context.h', |
| 814 'service/remoting/chromoting_host_manager.cc', | |
| 815 'service/remoting/chromoting_host_manager.h', | |
| 816 ], | 814 ], |
| 817 'include_dirs': [ | 815 'include_dirs': [ |
| 818 '..', | 816 '..', |
| 819 ], | 817 ], |
| 820 'conditions': [ | 818 'conditions': [ |
| 821 ['OS=="win"', { | 819 ['OS=="win"', { |
| 822 'defines': [ | 820 'defines': [ |
| 823 # CP_PRINT_SYSTEM_AVAILABLE disables default dummy implementation | 821 # CP_PRINT_SYSTEM_AVAILABLE disables default dummy implementation |
| 824 # of cloud print system, and allows to use custom implementaiton. | 822 # of cloud print system, and allows to use custom implementaiton. |
| 825 'CP_PRINT_SYSTEM_AVAILABLE', | 823 'CP_PRINT_SYSTEM_AVAILABLE', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 839 ], | 837 ], |
| 840 'defines': [ | 838 'defines': [ |
| 841 # CP_PRINT_SYSTEM_AVAILABLE disables default dummy implementation | 839 # CP_PRINT_SYSTEM_AVAILABLE disables default dummy implementation |
| 842 # of cloud print system, and allows to use custom implementaiton. | 840 # of cloud print system, and allows to use custom implementaiton. |
| 843 'CP_PRINT_SYSTEM_AVAILABLE', | 841 'CP_PRINT_SYSTEM_AVAILABLE', |
| 844 ], | 842 ], |
| 845 'sources': [ | 843 'sources': [ |
| 846 'service/cloud_print/print_system_cups.cc', | 844 'service/cloud_print/print_system_cups.cc', |
| 847 ], | 845 ], |
| 848 }], | 846 }], |
| 849 ['remoting==1', { | |
| 850 'dependencies': [ | |
| 851 '../remoting/remoting.gyp:chromoting_host', | |
| 852 ], | |
| 853 }], | |
| 854 ['remoting==0', { | |
| 855 'sources!': [ | |
| 856 'service/remoting/chromoting_host_manager.cc', | |
| 857 'service/remoting/chromoting_host_manager.h', | |
| 858 ], | |
| 859 }], | |
| 860 ], | 847 ], |
| 861 }, | 848 }, |
| 862 { | 849 { |
| 863 'target_name': 'ipclist', | 850 'target_name': 'ipclist', |
| 864 'type': 'executable', | 851 'type': 'executable', |
| 865 'dependencies': [ | 852 'dependencies': [ |
| 866 'test_support_common', | 853 'test_support_common', |
| 867 '../skia/skia.gyp:skia', | 854 '../skia/skia.gyp:skia', |
| 868 ], | 855 ], |
| 869 'include_dirs': [ | 856 'include_dirs': [ |
| (...skipping 758 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1628 }], # targets | 1615 }], # targets |
| 1629 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" | 1616 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" |
| 1630 ], # 'conditions' | 1617 ], # 'conditions' |
| 1631 } | 1618 } |
| 1632 | 1619 |
| 1633 # Local Variables: | 1620 # Local Variables: |
| 1634 # tab-width:2 | 1621 # tab-width:2 |
| 1635 # indent-tabs-mode:nil | 1622 # indent-tabs-mode:nil |
| 1636 # End: | 1623 # End: |
| 1637 # vim: set expandtab tabstop=2 shiftwidth=2: | 1624 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |