OLD | NEW |
1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 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 'variables': { | 5 'variables': { |
6 'chrome_unit_tests_sources': [ | 6 'chrome_unit_tests_sources': [ |
7 # histograms.xml is analyzed by AboutFlagsHistogramTest, so this | 7 # histograms.xml is analyzed by AboutFlagsHistogramTest, so this |
8 # dependency is needed to make commit bots run unit_tests on | 8 # dependency is needed to make commit bots run unit_tests on |
9 # histograms.xml changes. | 9 # histograms.xml changes. |
10 '../tools/metrics/histograms/histograms.xml', | 10 '../tools/metrics/histograms/histograms.xml', |
(...skipping 2899 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2910 'unit_tests', | 2910 'unit_tests', |
2911 ], | 2911 ], |
2912 'variables': { | 2912 'variables': { |
2913 'test_suite_name': 'unit_tests', | 2913 'test_suite_name': 'unit_tests', |
2914 'isolate_file': 'unit_tests.isolate', | 2914 'isolate_file': 'unit_tests.isolate', |
2915 'android_manifest_path': 'test/android/unit_tests_apk/AndroidManifes
t.xml', | 2915 'android_manifest_path': 'test/android/unit_tests_apk/AndroidManifes
t.xml', |
2916 'conditions': [ | 2916 'conditions': [ |
2917 ['v8_use_external_startup_data==1', { | 2917 ['v8_use_external_startup_data==1', { |
2918 'asset_location': '<(PRODUCT_DIR)/unit_tests_apk/assets', | 2918 'asset_location': '<(PRODUCT_DIR)/unit_tests_apk/assets', |
2919 'additional_input_paths': [ | 2919 'additional_input_paths': [ |
2920 '<(PRODUCT_DIR)/unit_tests_apk/assets/natives_blob.bin', | 2920 '<(PRODUCT_DIR)/unit_tests_apk/assets/natives_blob_<(arch_suff
ix).bin', |
2921 '<(PRODUCT_DIR)/unit_tests_apk/assets/snapshot_blob.bin', | 2921 '<(PRODUCT_DIR)/unit_tests_apk/assets/snapshot_blob_<(arch_suf
fix).bin', |
2922 ], | 2922 ], |
2923 }], | 2923 }], |
2924 ], | 2924 ], |
2925 }, | 2925 }, |
2926 'conditions': [ | 2926 'conditions': [ |
2927 ['v8_use_external_startup_data==1', { | 2927 ['v8_use_external_startup_data==1', { |
2928 'dependencies': [ | 2928 'dependencies': [ |
2929 '../v8/tools/gyp/v8.gyp:v8_external_snapshot', | 2929 '../v8/tools/gyp/v8.gyp:v8_external_snapshot', |
2930 ], | 2930 ], |
2931 'variables': { | 2931 'variables': { |
2932 'dest_path': '<(asset_location)', | 2932 'dest_path': '<(asset_location)', |
2933 'src_files': [ | 2933 'renaming_sources': [ |
2934 '<(PRODUCT_DIR)/natives_blob.bin', | 2934 '<(PRODUCT_DIR)/natives_blob.bin', |
2935 '<(PRODUCT_DIR)/snapshot_blob.bin', | 2935 '<(PRODUCT_DIR)/snapshot_blob.bin', |
2936 ], | 2936 ], |
| 2937 'renaming_destinations': [ |
| 2938 'natives_blob_<(arch_suffix).bin', |
| 2939 'snapshot_blob_<(arch_suffix).bin', |
| 2940 ], |
2937 'clear': 1, | 2941 'clear': 1, |
2938 }, | 2942 }, |
2939 'includes': ['../build/android/copy_ex.gypi'], | 2943 'includes': ['../build/android/copy_ex.gypi'], |
2940 }], | 2944 }], |
2941 ], | 2945 ], |
2942 'includes': [ '../build/apk_test.gypi' ], | 2946 'includes': [ |
| 2947 '../build/apk_test.gypi', |
| 2948 '../build/android/v8_external_startup_data_arch_suffix.gypi' |
| 2949 ], |
2943 }, | 2950 }, |
2944 ], | 2951 ], |
2945 'conditions': [ | 2952 'conditions': [ |
2946 ['test_isolation_mode != "noop"', { | 2953 ['test_isolation_mode != "noop"', { |
2947 'targets': [ | 2954 'targets': [ |
2948 { | 2955 { |
2949 'target_name': 'unit_tests_apk_run', | 2956 'target_name': 'unit_tests_apk_run', |
2950 'type': 'none', | 2957 'type': 'none', |
2951 'dependencies': [ | 2958 'dependencies': [ |
2952 'unit_tests_apk', | 2959 'unit_tests_apk', |
(...skipping 28 matching lines...) Expand all Loading... |
2981 'dependencies': [ | 2988 'dependencies': [ |
2982 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 2989 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
2983 ], | 2990 ], |
2984 }], | 2991 }], |
2985 ], | 2992 ], |
2986 }, | 2993 }, |
2987 ], | 2994 ], |
2988 }], | 2995 }], |
2989 ], # 'conditions' | 2996 ], # 'conditions' |
2990 } | 2997 } |
OLD | NEW |