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 768 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
779 'copies': [ | 779 'copies': [ |
780 { | 780 { |
781 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Resources', | 781 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Resources', |
782 'files': [ | 782 'files': [ |
783 '<(PRODUCT_DIR)/crash_inspector', | 783 '<(PRODUCT_DIR)/crash_inspector', |
784 '<(PRODUCT_DIR)/crash_report_sender.app' | 784 '<(PRODUCT_DIR)/crash_report_sender.app' |
785 ], | 785 ], |
786 }, | 786 }, |
787 ], | 787 ], |
788 'conditions': [ | 788 'conditions': [ |
789 ['enable_webrtc==1', { | |
790 'variables': { | |
791 'libpeer_target_type%': 'static_library', | |
792 }, | |
793 'conditions': [ | |
794 ['libpeer_target_type!="static_library"', { | |
795 'copies': [{ | |
796 'destination': '<(PRODUCT_DIR)/$(CONTENTS_FOLDER_PATH)/Librar
ies', | |
797 'files': [ | |
798 '<(PRODUCT_DIR)/libpeerconnection.so', | |
799 ], | |
800 }], | |
801 }], | |
802 ], | |
803 }], | |
804 ['icu_use_data_file_flag==1', { | 789 ['icu_use_data_file_flag==1', { |
805 'mac_bundle_resources': [ | 790 'mac_bundle_resources': [ |
806 '<(PRODUCT_DIR)/icudtl.dat', | 791 '<(PRODUCT_DIR)/icudtl.dat', |
807 ], | 792 ], |
808 }], | 793 }], |
809 ['v8_use_external_startup_data==1', { | 794 ['v8_use_external_startup_data==1', { |
810 'mac_bundle_resources': [ | 795 'mac_bundle_resources': [ |
811 '<(PRODUCT_DIR)/natives_blob.bin', | 796 '<(PRODUCT_DIR)/natives_blob.bin', |
812 '<(PRODUCT_DIR)/snapshot_blob.bin', | 797 '<(PRODUCT_DIR)/snapshot_blob.bin', |
813 ], | 798 ], |
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1063 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 1048 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
1064 '--destination_dir', '<(dest_dir)', | 1049 '--destination_dir', '<(dest_dir)', |
1065 ], | 1050 ], |
1066 }, | 1051 }, |
1067 ], | 1052 ], |
1068 }, | 1053 }, |
1069 ], | 1054 ], |
1070 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 1055 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
1071 ] | 1056 ] |
1072 } | 1057 } |
OLD | NEW |