| OLD | NEW |
| (Empty) | |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'target_defaults': { |
| 7 'variables': { |
| 8 'installer_util_target': 0, |
| 9 }, |
| 10 'target_conditions': [ |
| 11 # This part is shared between the two versions of the target. |
| 12 ['installer_util_target==1', { |
| 13 'sources': [ |
| 14 'util/browser_distribution.cc', |
| 15 'util/browser_distribution.h', |
| 16 'util/chrome_frame_distribution.cc', |
| 17 'util/chrome_frame_distribution.h', |
| 18 'util/copy_tree_work_item.cc', |
| 19 'util/copy_tree_work_item.h', |
| 20 'util/create_dir_work_item.cc', |
| 21 'util/create_dir_work_item.h', |
| 22 'util/create_reg_key_work_item.cc', |
| 23 'util/create_reg_key_work_item.h', |
| 24 'util/delete_reg_value_work_item.cc', |
| 25 'util/delete_reg_value_work_item.h', |
| 26 'util/delete_tree_work_item.cc', |
| 27 'util/delete_tree_work_item.h', |
| 28 'util/google_update_constants.cc', |
| 29 'util/google_update_constants.h', |
| 30 'util/google_update_settings.cc', |
| 31 'util/google_update_settings.h', |
| 32 'util/install_util.cc', |
| 33 'util/install_util.h', |
| 34 'util/l10n_string_util.cc', |
| 35 'util/l10n_string_util.h', |
| 36 'util/move_tree_work_item.cc', |
| 37 'util/move_tree_work_item.h', |
| 38 'util/self_reg_work_item.cc', |
| 39 'util/self_reg_work_item.h', |
| 40 'util/set_reg_value_work_item.cc', |
| 41 'util/set_reg_value_work_item.h', |
| 42 'util/util_constants.cc', |
| 43 'util/util_constants.h', |
| 44 'util/version.cc', |
| 45 'util/version.h', |
| 46 'util/work_item.cc', |
| 47 'util/work_item.h', |
| 48 'util/work_item_list.cc', |
| 49 'util/work_item_list.h', |
| 50 ], |
| 51 'include_dirs': [ |
| 52 '../..', |
| 53 ], |
| 54 }], |
| 55 ], |
| 56 }, |
| 57 'conditions': [ |
| 58 ['OS=="win"', { |
| 59 'targets': [ |
| 60 { |
| 61 'target_name': 'installer_util', |
| 62 'type': '<(library)', |
| 63 'msvs_guid': 'EFBB1436-A63F-4CD8-9E99-B89226E782EC', |
| 64 'variables': { |
| 65 'installer_util_target': 1, |
| 66 }, |
| 67 'dependencies': [ |
| 68 'installer_util_strings', |
| 69 '../../app/app.gyp:app_id', |
| 70 '../chrome.gyp:common_constants', |
| 71 '../chrome.gyp:chrome_resources', |
| 72 '../chrome.gyp:chrome_strings', |
| 73 '../../courgette/courgette.gyp:courgette_lib', |
| 74 '../../third_party/bspatch/bspatch.gyp:bspatch', |
| 75 '../../third_party/icu/icu.gyp:icui18n', |
| 76 '../../third_party/icu/icu.gyp:icuuc', |
| 77 '../../third_party/libxml/libxml.gyp:libxml', |
| 78 '../../third_party/lzma_sdk/lzma_sdk.gyp:lzma_sdk', |
| 79 ], |
| 80 'sources': [ |
| 81 'util/compat_checks.cc', |
| 82 'util/compat_checks.h', |
| 83 'util/delete_after_reboot_helper.cc', |
| 84 'util/delete_after_reboot_helper.h', |
| 85 'util/google_chrome_distribution.cc', |
| 86 'util/google_chrome_distribution.h', |
| 87 'util/helper.cc', |
| 88 'util/helper.h', |
| 89 'util/html_dialog.h', |
| 90 'util/html_dialog_impl.cc', |
| 91 'util/logging_installer.cc', |
| 92 'util/logging_installer.h', |
| 93 'util/lzma_util.cc', |
| 94 'util/lzma_util.h', |
| 95 'util/master_preferences.cc', |
| 96 'util/master_preferences.h', |
| 97 'util/shell_util.cc', |
| 98 'util/shell_util.h', |
| 99 ], |
| 100 }, |
| 101 { |
| 102 'target_name': 'installer_util_nacl_win64', |
| 103 'type': '<(library)', |
| 104 'msvs_guid': '91016F29-C324-4236-8AA0-032765E71582', |
| 105 'variables': { |
| 106 'installer_util_target': 1, |
| 107 }, |
| 108 'dependencies': [ |
| 109 'installer_util_strings', |
| 110 ], |
| 111 'include_dirs': [ |
| 112 '<(SHARED_INTERMEDIATE_DIR)', |
| 113 ], |
| 114 'configurations': { |
| 115 'Common': { |
| 116 'msvs_target_platform': 'x64', |
| 117 }, |
| 118 }, |
| 119 }, |
| 120 ], |
| 121 }], |
| 122 ], |
| 123 } |
| 124 |
| 125 # Local Variables: |
| 126 # tab-width:2 |
| 127 # indent-tabs-mode:nil |
| 128 # End: |
| 129 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |