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 923 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
934 'asset_location': '<(PRODUCT_DIR)/content_shell/assets', | 934 'asset_location': '<(PRODUCT_DIR)/content_shell/assets', |
935 'extra_native_libs': ['<(SHARED_LIB_DIR)/libosmesa.so'], | 935 'extra_native_libs': ['<(SHARED_LIB_DIR)/libosmesa.so'], |
936 'conditions': [ | 936 'conditions': [ |
937 ['icu_use_data_file_flag==1', { | 937 ['icu_use_data_file_flag==1', { |
938 'additional_input_paths': [ | 938 'additional_input_paths': [ |
939 '<(asset_location)/icudtl.dat', | 939 '<(asset_location)/icudtl.dat', |
940 ], | 940 ], |
941 }], | 941 }], |
942 ['v8_use_external_startup_data==1', { | 942 ['v8_use_external_startup_data==1', { |
943 'additional_input_paths': [ | 943 'additional_input_paths': [ |
944 '<(asset_location)/natives_blob.bin', | 944 '<(asset_location)/natives_blob_<(arch_suffix).bin', |
945 '<(asset_location)/snapshot_blob.bin', | 945 '<(asset_location)/snapshot_blob_<(arch_suffix).bin', |
946 ], | 946 ], |
947 }], | 947 }], |
948 ], | 948 ], |
949 }, | 949 }, |
950 'includes': [ '../build/java_apk.gypi' ], | 950 'includes': [ |
| 951 '../build/android/v8_external_startup_data_arch_suffix.gypi', |
| 952 '../build/java_apk.gypi', |
| 953 ], |
951 }, | 954 }, |
952 ], | 955 ], |
953 }], # OS=="android" | 956 }], # OS=="android" |
954 ['OS=="win"', { | 957 ['OS=="win"', { |
955 'targets': [ | 958 'targets': [ |
956 { | 959 { |
957 # GN version: //content/shell:crash_service | 960 # GN version: //content/shell:crash_service |
958 'target_name': 'content_shell_crash_service', | 961 'target_name': 'content_shell_crash_service', |
959 'type': 'executable', | 962 'type': 'executable', |
960 'dependencies': [ | 963 'dependencies': [ |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1003 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 1006 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
1004 '--destination_dir', '<(dest_dir)', | 1007 '--destination_dir', '<(dest_dir)', |
1005 ], | 1008 ], |
1006 }, | 1009 }, |
1007 ], | 1010 ], |
1008 }, | 1011 }, |
1009 ], | 1012 ], |
1010 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 1013 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
1011 ] | 1014 ] |
1012 } | 1015 } |
OLD | NEW |