OLD | NEW |
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 'content_shell_product_name': 'Content Shell', | 7 'content_shell_product_name': 'Content Shell', |
8 # The "19" is so that sites that sniff for version think that this is | 8 # The "19" is so that sites that sniff for version think that this is |
9 # something reasonably current; the "77.34.5" is a hint that this isn't a | 9 # something reasonably current; the "77.34.5" is a hint that this isn't a |
10 # standard Chrome. | 10 # standard Chrome. |
(...skipping 871 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
882 'action': ['../build/mac/tweak_info_plist.py', | 882 'action': ['../build/mac/tweak_info_plist.py', |
883 '--breakpad=1', | 883 '--breakpad=1', |
884 '--keystone=0', | 884 '--keystone=0', |
885 '--scm=1', | 885 '--scm=1', |
886 '--version=<(content_shell_version)', | 886 '--version=<(content_shell_version)', |
887 '--branding=<(content_shell_product_name)'], | 887 '--branding=<(content_shell_product_name)'], |
888 }, | 888 }, |
889 ], | 889 ], |
890 'copies': [ | 890 'copies': [ |
891 { | 891 { |
892 # Copy FFmpeg binaries for audio/video support. | |
893 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Libraries', | |
894 'files': [ | |
895 '<(PRODUCT_DIR)/ffmpegsumo.so', | |
896 ], | |
897 }, | |
898 { | |
899 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Resources', | 892 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Resources', |
900 'files': [ | 893 'files': [ |
901 '<(PRODUCT_DIR)/crash_inspector', | 894 '<(PRODUCT_DIR)/crash_inspector', |
902 '<(PRODUCT_DIR)/crash_report_sender.app' | 895 '<(PRODUCT_DIR)/crash_report_sender.app' |
903 ], | 896 ], |
904 }, | 897 }, |
905 ], | 898 ], |
906 'conditions': [ | 899 'conditions': [ |
907 ['enable_webrtc==1', { | 900 ['enable_webrtc==1', { |
908 'variables': { | 901 'variables': { |
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1181 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 1174 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
1182 '--destination_dir', '<(dest_dir)', | 1175 '--destination_dir', '<(dest_dir)', |
1183 ], | 1176 ], |
1184 }, | 1177 }, |
1185 ], | 1178 ], |
1186 }, | 1179 }, |
1187 ], | 1180 ], |
1188 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 1181 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
1189 ] | 1182 ] |
1190 } | 1183 } |
OLD | NEW |