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 765 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
776 'service/cloud_print/job_status_updater.h', | 776 'service/cloud_print/job_status_updater.h', |
777 'service/cloud_print/print_system_dummy.cc', | 777 'service/cloud_print/print_system_dummy.cc', |
778 'service/cloud_print/print_system.cc', | 778 'service/cloud_print/print_system.cc', |
779 'service/cloud_print/print_system.h', | 779 'service/cloud_print/print_system.h', |
780 'service/cloud_print/printer_job_handler.cc', | 780 'service/cloud_print/printer_job_handler.cc', |
781 'service/cloud_print/printer_job_handler.h', | 781 'service/cloud_print/printer_job_handler.h', |
782 'service/gaia/service_gaia_authenticator.cc', | 782 'service/gaia/service_gaia_authenticator.cc', |
783 'service/gaia/service_gaia_authenticator.h', | 783 'service/gaia/service_gaia_authenticator.h', |
784 'service/net/service_url_request_context.cc', | 784 'service/net/service_url_request_context.cc', |
785 'service/net/service_url_request_context.h', | 785 'service/net/service_url_request_context.h', |
786 'service/remoting/chromoting_host_manager.cc', | |
787 'service/remoting/chromoting_host_manager.h', | |
788 ], | 786 ], |
789 'include_dirs': [ | 787 'include_dirs': [ |
790 '..', | 788 '..', |
791 ], | 789 ], |
792 'conditions': [ | 790 'conditions': [ |
793 ['OS=="win"', { | 791 ['OS=="win"', { |
794 'defines': [ | 792 'defines': [ |
795 # CP_PRINT_SYSTEM_AVAILABLE disables default dummy implementation | 793 # CP_PRINT_SYSTEM_AVAILABLE disables default dummy implementation |
796 # of cloud print system, and allows to use custom implementaiton. | 794 # of cloud print system, and allows to use custom implementaiton. |
797 'CP_PRINT_SYSTEM_AVAILABLE', | 795 'CP_PRINT_SYSTEM_AVAILABLE', |
(...skipping 15 matching lines...) Expand all Loading... | |
813 # CP_PRINT_SYSTEM_AVAILABLE disables default dummy implementation | 811 # CP_PRINT_SYSTEM_AVAILABLE disables default dummy implementation |
814 # of cloud print system, and allows to use custom implementaiton. | 812 # of cloud print system, and allows to use custom implementaiton. |
815 'CP_PRINT_SYSTEM_AVAILABLE', | 813 'CP_PRINT_SYSTEM_AVAILABLE', |
816 ], | 814 ], |
817 'sources': [ | 815 'sources': [ |
818 'service/cloud_print/print_system_cups.cc', | 816 'service/cloud_print/print_system_cups.cc', |
819 ], | 817 ], |
820 }], | 818 }], |
821 ['remoting==1', { | 819 ['remoting==1', { |
822 'dependencies': [ | 820 'dependencies': [ |
823 '../remoting/remoting.gyp:chromoting_host', | 821 '../remoting/remoting.gyp:chromoting_host', |
Sergey Ulanov
2011/05/06 22:55:17
Don't need this dependency anymore
| |
824 ], | 822 ], |
825 }], | 823 }], |
826 ['remoting==0', { | |
827 'sources!': [ | |
828 'service/remoting/chromoting_host_manager.cc', | |
829 'service/remoting/chromoting_host_manager.h', | |
830 ], | |
831 }], | |
832 ], | 824 ], |
833 }, | 825 }, |
834 { | 826 { |
835 'target_name': 'ipclist', | 827 'target_name': 'ipclist', |
836 'type': 'executable', | 828 'type': 'executable', |
837 'dependencies': [ | 829 'dependencies': [ |
838 'chrome', | 830 'chrome', |
839 'chrome_resources', | 831 'chrome_resources', |
840 'chrome_strings', | 832 'chrome_strings', |
841 'test_support_common', | 833 'test_support_common', |
(...skipping 749 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1591 }], # targets | 1583 }], # targets |
1592 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" | 1584 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" |
1593 ], # 'conditions' | 1585 ], # 'conditions' |
1594 } | 1586 } |
1595 | 1587 |
1596 # Local Variables: | 1588 # Local Variables: |
1597 # tab-width:2 | 1589 # tab-width:2 |
1598 # indent-tabs-mode:nil | 1590 # indent-tabs-mode:nil |
1599 # End: | 1591 # End: |
1600 # vim: set expandtab tabstop=2 shiftwidth=2: | 1592 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |