Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(247)

Side by Side Diff: chrome/chrome_installer.gypi

Issue 10534027: Sign Chrome with the new Apple Developer ID certificate (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'variables': { 6 'variables': {
7 'lastchange_path': '../build/util/LASTCHANGE', 7 'lastchange_path': '../build/util/LASTCHANGE',
8 # 'branding_dir' is set in the 'conditions' section at the bottom. 8 # 'branding_dir' is set in the 'conditions' section at the bottom.
9 }, 9 },
10 'conditions': [ 10 'conditions': [
(...skipping 874 matching lines...) Expand 10 before | Expand all | Expand 10 after
885 # work properly in a shell script, where ${BUILT_PRODUCTS_DIR} is 885 # work properly in a shell script, where ${BUILT_PRODUCTS_DIR} is
886 # needed. 886 # needed.
887 'mac_packaging_sh_dir': 887 'mac_packaging_sh_dir':
888 '${BUILT_PRODUCTS_DIR}/<(mac_product_name) Packaging', 888 '${BUILT_PRODUCTS_DIR}/<(mac_product_name) Packaging',
889 }, # variables 889 }, # variables
890 'targets': [ 890 'targets': [
891 { 891 {
892 'target_name': 'installer_packaging', 892 'target_name': 'installer_packaging',
893 'type': 'none', 893 'type': 'none',
894 'dependencies': [ 894 'dependencies': [
895 'keychain_reauthorize',
896 'installer/mac/third_party/bsdiff/goobsdiff.gyp:*', 895 'installer/mac/third_party/bsdiff/goobsdiff.gyp:*',
897 'installer/mac/third_party/xz/xz.gyp:*', 896 'installer/mac/third_party/xz/xz.gyp:*',
898 ], 897 ],
899 'conditions': [ 898 'conditions': [
900 ['buildtype=="Official"', { 899 ['buildtype=="Official"', {
901 'actions': [ 900 'actions': [
902 { 901 {
903 # Create sign.sh, the script that the packaging system will 902 # Create sign.sh, the script that the packaging system will
904 # use to sign the .app bundle. 903 # use to sign the .app bundle.
905 'action_name': 'Make sign.sh', 904 'action_name': 'Make sign.sh',
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
959 'installer/mac/internal/chrome_canary_dmg_dsstore', 958 'installer/mac/internal/chrome_canary_dmg_dsstore',
960 'installer/mac/internal/chrome_canary_dmg_icon.icns', 959 'installer/mac/internal/chrome_canary_dmg_icon.icns',
961 'installer/mac/internal/chrome_dmg_background.png', 960 'installer/mac/internal/chrome_dmg_background.png',
962 'installer/mac/internal/chrome_dmg_dsstore', 961 'installer/mac/internal/chrome_dmg_dsstore',
963 'installer/mac/internal/chrome_dmg_icon.icns', 962 'installer/mac/internal/chrome_dmg_icon.icns',
964 'installer/mac/internal/generate_dmgs', 963 'installer/mac/internal/generate_dmgs',
965 ], 964 ],
966 }], # branding=="Chrome" and buildtype=="Official" 965 }], # branding=="Chrome" and buildtype=="Official"
967 ], # conditions 966 ], # conditions
968 }, 967 },
968 {
969 'destination': '<(mac_packaging_dir)/.keychain_reauthorize',
970 'files': [
971 'installer/mac/internal/keychain_reauthorize/com.google.Chrome',
972 'installer/mac/internal/keychain_reauthorize/com.google.Chrome.c anary',
973 ],
974 },
969 ], # copies 975 ], # copies
970 }, # target: installer_packaging 976 }, # target: installer_packaging
971 { 977 {
972 'target_name': 'keychain_reauthorize',
973 'type': 'executable',
974 'sources': [
975 'installer/mac/keychain_reauthorize_main.cc',
976 ],
977 }, # target: keychain_reauthorize
978 {
979 'target_name': 'gcapi_lib', 978 'target_name': 'gcapi_lib',
980 'type': 'static_library', 979 'type': 'static_library',
981 'include_dirs': [ 980 'include_dirs': [
982 '..', 981 '..',
983 ], 982 ],
984 'sources': [ 983 'sources': [
985 'installer/gcapi_mac/gcapi.h', 984 'installer/gcapi_mac/gcapi.h',
986 'installer/gcapi_mac/gcapi.mm', 985 'installer/gcapi_mac/gcapi.mm',
987 ], 986 ],
988 'link_settings': { 987 'link_settings': {
(...skipping 26 matching lines...) Expand all
1015 'variables': { 1014 'variables': {
1016 'branding_dir': 'app/theme/google_chrome', 1015 'branding_dir': 'app/theme/google_chrome',
1017 }, 1016 },
1018 }, { # else branding!="Chrome" 1017 }, { # else branding!="Chrome"
1019 'variables': { 1018 'variables': {
1020 'branding_dir': 'app/theme/chromium', 1019 'branding_dir': 'app/theme/chromium',
1021 }, 1020 },
1022 }], 1021 }],
1023 ], 1022 ],
1024 } 1023 }
OLDNEW
« no previous file with comments | « chrome/browser/chrome_browser_main_mac.mm ('k') | chrome/installer/mac/keychain_reauthorize_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698