| 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'lastchange_path': '<(SHARED_INTERMEDIATE_DIR)/build/LASTCHANGE', | 7 'lastchange_path': '<(SHARED_INTERMEDIATE_DIR)/build/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 791 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 802 ], # actions | 802 ], # actions |
| 803 }], # buildtype=="Official" | 803 }], # buildtype=="Official" |
| 804 ], # conditions | 804 ], # conditions |
| 805 'copies': [ | 805 'copies': [ |
| 806 { | 806 { |
| 807 # Put the files where the packaging system will find them. | 807 # Put the files where the packaging system will find them. |
| 808 # The packager will use these when building the disk image. | 808 # The packager will use these when building the disk image. |
| 809 'destination': '<(mac_packaging_dir)', | 809 'destination': '<(mac_packaging_dir)', |
| 810 'files': [ | 810 'files': [ |
| 811 # Pull over the known version of pkg-dmg to use. | 811 # Pull over the known version of pkg-dmg to use. |
| 812 'tools/build/mac/pkg-dmg', | 812 'installer/mac/pkg-dmg', |
| 813 ], | 813 ], |
| 814 'conditions': [ | 814 'conditions': [ |
| 815 ['mac_keystone==1', { | 815 ['mac_keystone==1', { |
| 816 'files': [ | 816 'files': [ |
| 817 'installer/mac/keystone_install.sh', | 817 'installer/mac/keystone_install.sh', |
| 818 ], | 818 ], |
| 819 }], # mac_keystone | 819 }], # mac_keystone |
| 820 ['branding=="Chrome" and buildtype=="Official"', { | 820 ['branding=="Chrome" and buildtype=="Official"', { |
| 821 'files': [ | 821 'files': [ |
| 822 'installer/mac/internal/chrome_dmg_background.png', | 822 'installer/mac/internal/chrome_dmg_background.png', |
| (...skipping 18 matching lines...) Expand all Loading... |
| 841 }, | 841 }, |
| 842 }], | 842 }], |
| 843 ], | 843 ], |
| 844 } | 844 } |
| 845 | 845 |
| 846 # Local Variables: | 846 # Local Variables: |
| 847 # tab-width:2 | 847 # tab-width:2 |
| 848 # indent-tabs-mode:nil | 848 # indent-tabs-mode:nil |
| 849 # End: | 849 # End: |
| 850 # vim: set expandtab tabstop=2 shiftwidth=2: | 850 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |