| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 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 | 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 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 | 8 |
| 9 # Define the common dependencies that contain all the actual | 9 # Define the common dependencies that contain all the actual |
| 10 # Chromium functionality. This list gets pulled in below by | 10 # Chromium functionality. This list gets pulled in below by |
| (...skipping 4866 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4877 'copies': [ | 4877 'copies': [ |
| 4878 { | 4878 { |
| 4879 'destination': '<(PRODUCT_DIR)/<(mac_product_name) Helper.app/Cont
ents/MacOS', | 4879 'destination': '<(PRODUCT_DIR)/<(mac_product_name) Helper.app/Cont
ents/MacOS', |
| 4880 'files': [ | 4880 'files': [ |
| 4881 '<(PRODUCT_DIR)/plugin_carbon_interpose.dylib', | 4881 '<(PRODUCT_DIR)/plugin_carbon_interpose.dylib', |
| 4882 ], | 4882 ], |
| 4883 }, | 4883 }, |
| 4884 ], | 4884 ], |
| 4885 'actions': [ | 4885 'actions': [ |
| 4886 { | 4886 { |
| 4887 # TODO: remove this action and the script it runs after 09/01/09 | |
| 4888 'action_name': 'Remove old resources symlink', | |
| 4889 'inputs': [], | |
| 4890 'outputs': [], | |
| 4891 'action': [ 'app/nuke_mac_resources_link' ], | |
| 4892 }, | |
| 4893 { | |
| 4894 # Generate the InfoPlist.strings file | 4887 # Generate the InfoPlist.strings file |
| 4895 'action_name': 'Generating InfoPlist.strings files', | 4888 'action_name': 'Generating InfoPlist.strings files', |
| 4896 'variables': { | 4889 'variables': { |
| 4897 'tool_path': '<(PRODUCT_DIR)/infoplist_strings_tool', | 4890 'tool_path': '<(PRODUCT_DIR)/infoplist_strings_tool', |
| 4898 'version_file_path': 'VERSION', | 4891 'version_file_path': 'VERSION', |
| 4899 # Unique dir to write to so the [lang].lproj/InfoPlist.strings | 4892 # Unique dir to write to so the [lang].lproj/InfoPlist.strings |
| 4900 # for the main app and the helper app don't name collide. | 4893 # for the main app and the helper app don't name collide. |
| 4901 'output_path': '<(INTERMEDIATE_DIR)/helper_infoplist_strings', | 4894 'output_path': '<(INTERMEDIATE_DIR)/helper_infoplist_strings', |
| 4902 }, | 4895 }, |
| 4903 'conditions': [ | 4896 'conditions': [ |
| (...skipping 1029 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5933 # Use outputs of this action as inputs for the main target build. | 5926 # Use outputs of this action as inputs for the main target build. |
| 5934 # Seems as a misnomer but makes this happy on Linux (scons). | 5927 # Seems as a misnomer but makes this happy on Linux (scons). |
| 5935 'process_outputs_as_sources': 1, | 5928 'process_outputs_as_sources': 1, |
| 5936 }, | 5929 }, |
| 5937 ], # 'actions' | 5930 ], # 'actions' |
| 5938 }, | 5931 }, |
| 5939 ] | 5932 ] |
| 5940 }], | 5933 }], |
| 5941 ], # 'conditions' | 5934 ], # 'conditions' |
| 5942 } | 5935 } |
| OLD | NEW |