| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 962 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 973 'service/cloud_print/cloud_print_consts.cc', | 973 'service/cloud_print/cloud_print_consts.cc', |
| 974 'service/cloud_print/cloud_print_consts.h', | 974 'service/cloud_print/cloud_print_consts.h', |
| 975 'service/cloud_print/cloud_print_helpers.cc', | 975 'service/cloud_print/cloud_print_helpers.cc', |
| 976 'service/cloud_print/cloud_print_helpers.h', | 976 'service/cloud_print/cloud_print_helpers.h', |
| 977 'service/cloud_print/cloud_print_proxy.cc', | 977 'service/cloud_print/cloud_print_proxy.cc', |
| 978 'service/cloud_print/cloud_print_proxy.h', | 978 'service/cloud_print/cloud_print_proxy.h', |
| 979 'service/cloud_print/cloud_print_proxy_backend.cc', | 979 'service/cloud_print/cloud_print_proxy_backend.cc', |
| 980 'service/cloud_print/cloud_print_proxy_backend.h', | 980 'service/cloud_print/cloud_print_proxy_backend.h', |
| 981 'service/cloud_print/job_status_updater.cc', | 981 'service/cloud_print/job_status_updater.cc', |
| 982 'service/cloud_print/job_status_updater.h', | 982 'service/cloud_print/job_status_updater.h', |
| 983 'service/cloud_print/printer_info_dummy.cc', | 983 'service/cloud_print/print_system_dummy.cc', |
| 984 'service/cloud_print/printer_info.h', | 984 'service/cloud_print/print_system.h', |
| 985 'service/cloud_print/printer_job_handler.cc', | 985 'service/cloud_print/printer_job_handler.cc', |
| 986 'service/cloud_print/printer_job_handler.h', | 986 'service/cloud_print/printer_job_handler.h', |
| 987 'service/gaia/service_gaia_authenticator.cc', | 987 'service/gaia/service_gaia_authenticator.cc', |
| 988 'service/gaia/service_gaia_authenticator.h', | 988 'service/gaia/service_gaia_authenticator.h', |
| 989 'service/net/service_network_change_notifier_thread.cc', | 989 'service/net/service_network_change_notifier_thread.cc', |
| 990 'service/net/service_network_change_notifier_thread.h', | 990 'service/net/service_network_change_notifier_thread.h', |
| 991 'service/net/service_url_request_context.cc', | 991 'service/net/service_url_request_context.cc', |
| 992 'service/net/service_url_request_context.h', | 992 'service/net/service_url_request_context.h', |
| 993 ], | 993 ], |
| 994 'include_dirs': [ | 994 'include_dirs': [ |
| 995 '..', | 995 '..', |
| 996 ], | 996 ], |
| 997 'conditions': [ | 997 'conditions': [ |
| 998 ['OS=="win"', { | 998 ['OS=="win"', { |
| 999 'defines': [ | 999 'defines': [ |
| 1000 # CP_PRINT_SYSTEM_AVAILABLE disables default dummy implementation | 1000 # CP_PRINT_SYSTEM_AVAILABLE disables default dummy implementation |
| 1001 # of cloud print system, and allows to use custom implementaiton. | 1001 # of cloud print system, and allows to use custom implementaiton. |
| 1002 'CP_PRINT_SYSTEM_AVAILABLE', | 1002 'CP_PRINT_SYSTEM_AVAILABLE', |
| 1003 ], | 1003 ], |
| 1004 'sources': [ | 1004 'sources': [ |
| 1005 'service/cloud_print/printer_info_win.cc', | 1005 'service/cloud_print/print_system_win.cc', |
| 1006 ], | 1006 ], |
| 1007 }], | 1007 }], |
| 1008 ['OS=="linux"', { | 1008 ['OS=="linux"', { |
| 1009 'dependencies': [ | 1009 'dependencies': [ |
| 1010 '../build/linux/system.gyp:gtk', | 1010 '../build/linux/system.gyp:gtk', |
| 1011 ], | 1011 ], |
| 1012 }], | 1012 }], |
| 1013 ['OS=="linux" and chromeos==0 and target_arch!="arm"', { | 1013 ['OS=="linux" and chromeos==0 and target_arch!="arm"', { |
| 1014 'link_settings': { | 1014 'link_settings': { |
| 1015 'libraries': [ | 1015 'libraries': [ |
| 1016 '-lcups', | 1016 '-lcups', |
| 1017 ], | 1017 ], |
| 1018 }, | 1018 }, |
| 1019 'defines': [ | 1019 'defines': [ |
| 1020 # CP_PRINT_SYSTEM_AVAILABLE disables default dummy implementation | 1020 # CP_PRINT_SYSTEM_AVAILABLE disables default dummy implementation |
| 1021 # of cloud print system, and allows to use custom implementaiton. | 1021 # of cloud print system, and allows to use custom implementaiton. |
| 1022 'CP_PRINT_SYSTEM_AVAILABLE', | 1022 'CP_PRINT_SYSTEM_AVAILABLE', |
| 1023 ], | 1023 ], |
| 1024 'sources': [ | 1024 'sources': [ |
| 1025 'service/cloud_print/printer_info_cups.cc', | 1025 'service/cloud_print/print_system_cups.cc', |
| 1026 ], | 1026 ], |
| 1027 }], | 1027 }], |
| 1028 ], | 1028 ], |
| 1029 }, | 1029 }, |
| 1030 ], | 1030 ], |
| 1031 'conditions': [ | 1031 'conditions': [ |
| 1032 ['OS=="mac"', | 1032 ['OS=="mac"', |
| 1033 { 'targets': [ | 1033 { 'targets': [ |
| 1034 { | 1034 { |
| 1035 'target_name': 'helper_app', | 1035 'target_name': 'helper_app', |
| (...skipping 685 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1721 }], # targets | 1721 }], # targets |
| 1722 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" | 1722 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" |
| 1723 ], # 'conditions' | 1723 ], # 'conditions' |
| 1724 } | 1724 } |
| 1725 | 1725 |
| 1726 # Local Variables: | 1726 # Local Variables: |
| 1727 # tab-width:2 | 1727 # tab-width:2 |
| 1728 # indent-tabs-mode:nil | 1728 # indent-tabs-mode:nil |
| 1729 # End: | 1729 # End: |
| 1730 # vim: set expandtab tabstop=2 shiftwidth=2: | 1730 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |