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