| OLD | NEW |
| 1 { | 1 { |
| 2 'variables': { | 2 'variables': { |
| 3 'version_py': '../../chrome/tools/build/version.py', | 3 'version_py': '../../chrome/tools/build/version.py', |
| 4 'version_path': '../../chrome/VERSION', | 4 'version_path': '../../chrome/VERSION', |
| 5 'lastchange_path': '<(SHARED_INTERMEDIATE_DIR)/build/LASTCHANGE', | 5 'lastchange_path': '<(SHARED_INTERMEDIATE_DIR)/build/LASTCHANGE', |
| 6 # 'branding_dir' is set in the 'conditions' section at the bottom. | 6 # 'branding_dir' is set in the 'conditions' section at the bottom. |
| 7 }, | 7 }, |
| 8 'includes': [ | 8 'includes': [ |
| 9 '../../build/common.gypi', | 9 '../../build/common.gypi', |
| 10 ], | 10 ], |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 '../../courgette/courgette.gyp:courgette_lib', | 24 '../../courgette/courgette.gyp:courgette_lib', |
| 25 '../../third_party/bspatch/bspatch.gyp:bspatch', | 25 '../../third_party/bspatch/bspatch.gyp:bspatch', |
| 26 '../../third_party/icu/icu.gyp:icui18n', | 26 '../../third_party/icu/icu.gyp:icui18n', |
| 27 '../../third_party/icu/icu.gyp:icuuc', | 27 '../../third_party/icu/icu.gyp:icuuc', |
| 28 '../../third_party/libxml/libxml.gyp:libxml', | 28 '../../third_party/libxml/libxml.gyp:libxml', |
| 29 '../../third_party/lzma_sdk/lzma_sdk.gyp:lzma_sdk', | 29 '../../third_party/lzma_sdk/lzma_sdk.gyp:lzma_sdk', |
| 30 ], | 30 ], |
| 31 'include_dirs': [ | 31 'include_dirs': [ |
| 32 '../..', | 32 '../..', |
| 33 ], | 33 ], |
| 34 'variables': { |
| 35 'extra_installer_util_sources%': [ |
| 36 ], |
| 37 }, |
| 34 'sources': [ | 38 'sources': [ |
| 35 'util/browser_distribution.cc', | 39 'util/browser_distribution.cc', |
| 36 'util/browser_distribution.h', | 40 'util/browser_distribution.h', |
| 37 'util/compat_checks.cc', | 41 'util/compat_checks.cc', |
| 38 'util/compat_checks.h', | 42 'util/compat_checks.h', |
| 39 'util/copy_tree_work_item.cc', | 43 'util/copy_tree_work_item.cc', |
| 40 'util/copy_tree_work_item.h', | 44 'util/copy_tree_work_item.h', |
| 41 'util/create_dir_work_item.cc', | 45 'util/create_dir_work_item.cc', |
| 42 'util/create_dir_work_item.h', | 46 'util/create_dir_work_item.h', |
| 43 'util/create_reg_key_work_item.cc', | 47 'util/create_reg_key_work_item.cc', |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 'util/util_constants.cc', | 81 'util/util_constants.cc', |
| 78 'util/util_constants.h', | 82 'util/util_constants.h', |
| 79 'util/version.cc', | 83 'util/version.cc', |
| 80 'util/version.h', | 84 'util/version.h', |
| 81 'util/work_item.cc', | 85 'util/work_item.cc', |
| 82 'util/work_item.h', | 86 'util/work_item.h', |
| 83 'util/work_item_list.cc', | 87 'util/work_item_list.cc', |
| 84 'util/work_item_list.h', | 88 'util/work_item_list.h', |
| 85 '../common/json_value_serializer.cc', | 89 '../common/json_value_serializer.cc', |
| 86 '../common/pref_names.cc', | 90 '../common/pref_names.cc', |
| 91 '<@(extra_installer_util_sources)', |
| 87 ], | 92 ], |
| 88 }, | 93 }, |
| 89 { | 94 { |
| 90 'target_name': 'gcapi_dll', | 95 'target_name': 'gcapi_dll', |
| 91 'type': 'loadable_module', | 96 'type': 'loadable_module', |
| 92 'msvs_guid': 'B802A2FE-E4E2-4F5A-905A-D5128875C954', | 97 'msvs_guid': 'B802A2FE-E4E2-4F5A-905A-D5128875C954', |
| 93 'dependencies': [ | 98 'dependencies': [ |
| 94 '../../google_update/google_update.gyp:google_update', | 99 '../../google_update/google_update.gyp:google_update', |
| 95 ], | 100 ], |
| 96 'include_dirs': [ | 101 'include_dirs': [ |
| (...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 618 'variables': { | 623 'variables': { |
| 619 'branding_dir': '../app/theme/google_chrome', | 624 'branding_dir': '../app/theme/google_chrome', |
| 620 }, | 625 }, |
| 621 }, { # else branding!="Chrome" | 626 }, { # else branding!="Chrome" |
| 622 'variables': { | 627 'variables': { |
| 623 'branding_dir': '../app/theme/chromium', | 628 'branding_dir': '../app/theme/chromium', |
| 624 }, | 629 }, |
| 625 }], | 630 }], |
| 626 ], | 631 ], |
| 627 } | 632 } |
| OLD | NEW |