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 2895 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2906 'unit_tests', | 2906 'unit_tests', |
2907 ], | 2907 ], |
2908 'variables': { | 2908 'variables': { |
2909 'test_suite_name': 'unit_tests', | 2909 'test_suite_name': 'unit_tests', |
2910 'isolate_file': 'unit_tests.isolate', | 2910 'isolate_file': 'unit_tests.isolate', |
2911 'android_manifest_path': 'test/android/unit_tests_apk/AndroidManifes
t.xml', | 2911 'android_manifest_path': 'test/android/unit_tests_apk/AndroidManifes
t.xml', |
2912 'conditions': [ | 2912 'conditions': [ |
2913 ['v8_use_external_startup_data==1', { | 2913 ['v8_use_external_startup_data==1', { |
2914 'asset_location': '<(PRODUCT_DIR)/unit_tests_apk/assets', | 2914 'asset_location': '<(PRODUCT_DIR)/unit_tests_apk/assets', |
2915 'additional_input_paths': [ | 2915 'additional_input_paths': [ |
2916 '<(PRODUCT_DIR)/unit_tests_apk/assets/natives_blob.bin', | 2916 '<(PRODUCT_DIR)/unit_tests_apk/assets/natives_blob_<(arch_suff
ix).bin', |
2917 '<(PRODUCT_DIR)/unit_tests_apk/assets/snapshot_blob.bin', | 2917 '<(PRODUCT_DIR)/unit_tests_apk/assets/snapshot_blob_<(arch_suf
fix).bin', |
2918 ], | 2918 ], |
2919 }], | 2919 }], |
2920 ], | 2920 ], |
2921 }, | 2921 }, |
2922 'conditions': [ | 2922 'conditions': [ |
2923 ['v8_use_external_startup_data==1', { | 2923 ['v8_use_external_startup_data==1', { |
2924 'dependencies': [ | 2924 'dependencies': [ |
2925 '../v8/tools/gyp/v8.gyp:v8_external_snapshot', | 2925 '../v8/tools/gyp/v8.gyp:v8_external_snapshot', |
2926 ], | 2926 ], |
2927 'variables': { | 2927 'variables': { |
2928 'dest_path': '<(asset_location)', | 2928 'dest_path': '<(asset_location)', |
2929 'src_files': [ | 2929 'renaming_sources': [ |
2930 '<(PRODUCT_DIR)/natives_blob.bin', | 2930 '<(PRODUCT_DIR)/natives_blob.bin', |
2931 '<(PRODUCT_DIR)/snapshot_blob.bin', | 2931 '<(PRODUCT_DIR)/snapshot_blob.bin', |
2932 ], | 2932 ], |
| 2933 'renaming_destinations': [ |
| 2934 'natives_blob_<(arch_suffix).bin', |
| 2935 'snapshot_blob_<(arch_suffix).bin', |
| 2936 ], |
2933 'clear': 1, | 2937 'clear': 1, |
2934 }, | 2938 }, |
2935 'includes': ['../build/android/copy_ex.gypi'], | 2939 'includes': ['../build/android/copy_ex.gypi'], |
2936 }], | 2940 }], |
2937 ], | 2941 ], |
2938 'includes': [ '../build/apk_test.gypi' ], | 2942 'includes': [ |
| 2943 '../build/apk_test.gypi', |
| 2944 '../build/android/v8_external_startup_data_arch_suffix.gypi' |
| 2945 ], |
2939 }, | 2946 }, |
2940 ], | 2947 ], |
2941 'conditions': [ | 2948 'conditions': [ |
2942 ['test_isolation_mode != "noop"', { | 2949 ['test_isolation_mode != "noop"', { |
2943 'targets': [ | 2950 'targets': [ |
2944 { | 2951 { |
2945 'target_name': 'unit_tests_apk_run', | 2952 'target_name': 'unit_tests_apk_run', |
2946 'type': 'none', | 2953 'type': 'none', |
2947 'dependencies': [ | 2954 'dependencies': [ |
2948 'unit_tests_apk', | 2955 'unit_tests_apk', |
(...skipping 28 matching lines...) Expand all Loading... |
2977 'dependencies': [ | 2984 'dependencies': [ |
2978 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 2985 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
2979 ], | 2986 ], |
2980 }], | 2987 }], |
2981 ], | 2988 ], |
2982 }, | 2989 }, |
2983 ], | 2990 ], |
2984 }], | 2991 }], |
2985 ], # 'conditions' | 2992 ], # 'conditions' |
2986 } | 2993 } |
OLD | NEW |