| 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 'conditions': [ | 8 'conditions': [ |
| 9 ['OS=="win"', { | 9 ['OS=="win"', { |
| 10 'targets': [ | 10 'targets': [ |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 '../../third_party/icu/icu.gyp:icuuc', | 24 '../../third_party/icu/icu.gyp:icuuc', |
| 25 '../../third_party/libxml/libxml.gyp:libxml', | 25 '../../third_party/libxml/libxml.gyp:libxml', |
| 26 '../../third_party/lzma_sdk/lzma_sdk.gyp:lzma_sdk', | 26 '../../third_party/lzma_sdk/lzma_sdk.gyp:lzma_sdk', |
| 27 ], | 27 ], |
| 28 'include_dirs': [ | 28 'include_dirs': [ |
| 29 '../..', | 29 '../..', |
| 30 ], | 30 ], |
| 31 'sources': [ | 31 'sources': [ |
| 32 'util/browser_distribution.cc', | 32 'util/browser_distribution.cc', |
| 33 'util/browser_distribution.h', | 33 'util/browser_distribution.h', |
| 34 'util/chrome_frame_distribution.cc', |
| 35 'util/chrome_frame_distribution.h', |
| 34 'util/compat_checks.cc', | 36 'util/compat_checks.cc', |
| 35 'util/compat_checks.h', | 37 'util/compat_checks.h', |
| 36 'util/copy_tree_work_item.cc', | 38 'util/copy_tree_work_item.cc', |
| 37 'util/copy_tree_work_item.h', | 39 'util/copy_tree_work_item.h', |
| 38 'util/create_dir_work_item.cc', | 40 'util/create_dir_work_item.cc', |
| 39 'util/create_dir_work_item.h', | 41 'util/create_dir_work_item.h', |
| 40 'util/create_reg_key_work_item.cc', | 42 'util/create_reg_key_work_item.cc', |
| 41 'util/create_reg_key_work_item.h', | 43 'util/create_reg_key_work_item.h', |
| 42 'util/delete_reg_value_work_item.cc', | 44 'util/delete_reg_value_work_item.cc', |
| 43 'util/delete_reg_value_work_item.h', | 45 'util/delete_reg_value_work_item.h', |
| (...skipping 29 matching lines...) Expand all Loading... |
| 73 'util/shell_util.h', | 75 'util/shell_util.h', |
| 74 'util/util_constants.cc', | 76 'util/util_constants.cc', |
| 75 'util/util_constants.h', | 77 'util/util_constants.h', |
| 76 'util/version.cc', | 78 'util/version.cc', |
| 77 'util/version.h', | 79 'util/version.h', |
| 78 'util/work_item.cc', | 80 'util/work_item.cc', |
| 79 'util/work_item.h', | 81 'util/work_item.h', |
| 80 'util/work_item_list.cc', | 82 'util/work_item_list.cc', |
| 81 'util/work_item_list.h', | 83 'util/work_item_list.h', |
| 82 ], | 84 ], |
| 83 'variables': { | |
| 84 'extra_installer_util_sources%': 0, | |
| 85 }, | |
| 86 'conditions': [ | |
| 87 ['extra_installer_util_sources', { | |
| 88 'sources': [ | |
| 89 'util/exp/experimental_browser_distribution.cc', | |
| 90 'util/exp/experimental_browser_distribution.h', | |
| 91 ], | |
| 92 }, | |
| 93 ], | |
| 94 ], | |
| 95 }, | 85 }, |
| 96 { | 86 { |
| 97 'target_name': 'gcapi_dll', | 87 'target_name': 'gcapi_dll', |
| 98 'type': 'loadable_module', | 88 'type': 'loadable_module', |
| 99 'msvs_guid': 'B802A2FE-E4E2-4F5A-905A-D5128875C954', | 89 'msvs_guid': 'B802A2FE-E4E2-4F5A-905A-D5128875C954', |
| 100 'dependencies': [ | 90 'dependencies': [ |
| 101 '../../google_update/google_update.gyp:google_update', | 91 '../../google_update/google_update.gyp:google_update', |
| 102 ], | 92 ], |
| 103 'include_dirs': [ | 93 'include_dirs': [ |
| 104 '../..', | 94 '../..', |
| (...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 621 'variables': { | 611 'variables': { |
| 622 'branding_dir': '../app/theme/google_chrome', | 612 'branding_dir': '../app/theme/google_chrome', |
| 623 }, | 613 }, |
| 624 }, { # else branding!="Chrome" | 614 }, { # else branding!="Chrome" |
| 625 'variables': { | 615 'variables': { |
| 626 'branding_dir': '../app/theme/chromium', | 616 'branding_dir': '../app/theme/chromium', |
| 627 }, | 617 }, |
| 628 }], | 618 }], |
| 629 ], | 619 ], |
| 630 } | 620 } |
| OLD | NEW |