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