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_<(arch_suff
ix).bin', | 2920 '<(PRODUCT_DIR)/unit_tests_apk/assets/natives_blob.bin', |
2921 '<(PRODUCT_DIR)/unit_tests_apk/assets/snapshot_blob_<(arch_suf
fix).bin', | 2921 '<(PRODUCT_DIR)/unit_tests_apk/assets/snapshot_blob.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 'renaming_sources': [ | 2933 'src_files': [ |
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 ], | |
2941 'clear': 1, | 2937 'clear': 1, |
2942 }, | 2938 }, |
2943 'includes': ['../build/android/copy_ex.gypi'], | 2939 'includes': ['../build/android/copy_ex.gypi'], |
2944 }], | 2940 }], |
2945 ], | 2941 ], |
2946 'includes': [ | 2942 'includes': [ '../build/apk_test.gypi' ], |
2947 '../build/apk_test.gypi', | |
2948 '../build/android/v8_external_startup_data_arch_suffix.gypi' | |
2949 ], | |
2950 }, | 2943 }, |
2951 ], | 2944 ], |
2952 'conditions': [ | 2945 'conditions': [ |
2953 ['test_isolation_mode != "noop"', { | 2946 ['test_isolation_mode != "noop"', { |
2954 'targets': [ | 2947 'targets': [ |
2955 { | 2948 { |
2956 'target_name': 'unit_tests_apk_run', | 2949 'target_name': 'unit_tests_apk_run', |
2957 'type': 'none', | 2950 'type': 'none', |
2958 'dependencies': [ | 2951 'dependencies': [ |
2959 'unit_tests_apk', | 2952 'unit_tests_apk', |
(...skipping 28 matching lines...) Expand all Loading... |
2988 'dependencies': [ | 2981 'dependencies': [ |
2989 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 2982 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
2990 ], | 2983 ], |
2991 }], | 2984 }], |
2992 ], | 2985 ], |
2993 }, | 2986 }, |
2994 ], | 2987 ], |
2995 }], | 2988 }], |
2996 ], # 'conditions' | 2989 ], # 'conditions' |
2997 } | 2990 } |
OLD | NEW |