| 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 12 matching lines...) Expand all Loading... |
| 23 'chromium_dependencies': [ | 23 'chromium_dependencies': [ |
| 24 'common', | 24 'common', |
| 25 'browser', | 25 'browser', |
| 26 'debugger', | 26 'debugger', |
| 27 'chrome_gpu', | 27 'chrome_gpu', |
| 28 'renderer', | 28 'renderer', |
| 29 'syncapi', | 29 'syncapi', |
| 30 'utility', | 30 'utility', |
| 31 'profile_import', | 31 'profile_import', |
| 32 'worker', | 32 'worker', |
| 33 'service', |
| 33 '../printing/printing.gyp:printing', | 34 '../printing/printing.gyp:printing', |
| 34 '../webkit/webkit.gyp:inspector_resources', | 35 '../webkit/webkit.gyp:inspector_resources', |
| 35 ], | 36 ], |
| 36 'nacl_win64_dependencies': [ | 37 'nacl_win64_dependencies': [ |
| 37 'common_nacl_win64', | 38 'common_nacl_win64', |
| 38 'common_constants_win64', | 39 'common_constants_win64', |
| 39 'installer/installer.gyp:installer_util_nacl_win64', | 40 'installer/installer.gyp:installer_util_nacl_win64', |
| 40 ], | 41 ], |
| 41 'allocator_target': '../base/allocator/allocator.gyp:allocator', | 42 'allocator_target': '../base/allocator/allocator.gyp:allocator', |
| 42 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', | 43 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', |
| (...skipping 924 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 967 }], | 968 }], |
| 968 ['OS=="mac"', { | 969 ['OS=="mac"', { |
| 969 'link_settings': { | 970 'link_settings': { |
| 970 'libraries': [ | 971 'libraries': [ |
| 971 '$(SDKROOT)/System/Library/Frameworks/IOKit.framework', | 972 '$(SDKROOT)/System/Library/Frameworks/IOKit.framework', |
| 972 ], | 973 ], |
| 973 }, | 974 }, |
| 974 }], | 975 }], |
| 975 ], | 976 ], |
| 976 }, | 977 }, |
| 978 { |
| 979 'target_name': 'service', |
| 980 'type': '<(library)', |
| 981 'msvs_guid': '2DA87614-55C5-4E56-A17E-0CD099786197', |
| 982 'dependencies': [ |
| 983 '../base/base.gyp:base', |
| 984 ], |
| 985 'sources': [ |
| 986 'service/service_main.cc', |
| 987 'service/service_process.cc', |
| 988 'service/service_process.h', |
| 989 'service/cloud_print/cloud_print_proxy.cc', |
| 990 'service/cloud_print/cloud_print_proxy.h', |
| 991 'service/gaia/service_gaia_authenticator.cc', |
| 992 'service/gaia/service_gaia_authenticator.h', |
| 993 'service/net/service_url_request_context.cc', |
| 994 'service/net/service_url_request_context.h', |
| 995 ], |
| 996 'include_dirs': [ |
| 997 '..', |
| 998 ], |
| 999 'conditions': [ |
| 1000 ['OS=="linux"', { |
| 1001 'dependencies': [ |
| 1002 '../build/linux/system.gyp:gtk', |
| 1003 ], |
| 1004 }], |
| 1005 ], |
| 1006 }, |
| 977 ], | 1007 ], |
| 978 'conditions': [ | 1008 'conditions': [ |
| 979 ['OS=="mac"', | 1009 ['OS=="mac"', |
| 980 { 'targets': [ | 1010 { 'targets': [ |
| 981 { | 1011 { |
| 982 'target_name': 'helper_app', | 1012 'target_name': 'helper_app', |
| 983 'type': 'executable', | 1013 'type': 'executable', |
| 984 'product_name': '<(mac_product_name) Helper', | 1014 'product_name': '<(mac_product_name) Helper', |
| 985 'mac_bundle': 1, | 1015 'mac_bundle': 1, |
| 986 'dependencies': [ | 1016 'dependencies': [ |
| (...skipping 657 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1644 }], # targets | 1674 }], # targets |
| 1645 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" | 1675 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" |
| 1646 ], # 'conditions' | 1676 ], # 'conditions' |
| 1647 } | 1677 } |
| 1648 | 1678 |
| 1649 # Local Variables: | 1679 # Local Variables: |
| 1650 # tab-width:2 | 1680 # tab-width:2 |
| 1651 # indent-tabs-mode:nil | 1681 # indent-tabs-mode:nil |
| 1652 # End: | 1682 # End: |
| 1653 # vim: set expandtab tabstop=2 shiftwidth=2: | 1683 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |