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 '../apps/saved_files_service_unittest.cc', | 7 '../apps/saved_files_service_unittest.cc', |
8 '../components/autofill/content/renderer/test_password_autofill_agent.cc', | 8 '../components/autofill/content/renderer/test_password_autofill_agent.cc', |
9 '../components/autofill/content/renderer/test_password_autofill_agent.h', | 9 '../components/autofill/content/renderer/test_password_autofill_agent.h', |
10 '../components/autofill/content/renderer/test_password_generation_agent.cc
', | 10 '../components/autofill/content/renderer/test_password_generation_agent.cc
', |
(...skipping 2828 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2839 'target_name': 'unit_tests_apk', | 2839 'target_name': 'unit_tests_apk', |
2840 'type': 'none', | 2840 'type': 'none', |
2841 'dependencies': [ | 2841 'dependencies': [ |
2842 'chrome_java', | 2842 'chrome_java', |
2843 'unit_tests_java', | 2843 'unit_tests_java', |
2844 'unit_tests', | 2844 'unit_tests', |
2845 ], | 2845 ], |
2846 'variables': { | 2846 'variables': { |
2847 'test_suite_name': 'unit_tests', | 2847 'test_suite_name': 'unit_tests', |
2848 'android_manifest_path': 'test/android/unit_tests_apk/AndroidManifes
t.xml', | 2848 'android_manifest_path': 'test/android/unit_tests_apk/AndroidManifes
t.xml', |
| 2849 'conditions': [ |
| 2850 ['v8_use_external_startup_data==1', { |
| 2851 'additional_input_paths': [ |
| 2852 '<(PRODUCT_DIR)/natives_blob.bin', |
| 2853 '<(PRODUCT_DIR)/snapshot_blob.bin', |
| 2854 ], |
| 2855 }], |
| 2856 ], |
2849 }, | 2857 }, |
| 2858 'copies': [ |
| 2859 { |
| 2860 'destination': '<(PRODUCT_DIR)/unit_tests_apk/assets', |
| 2861 'conditions': [ |
| 2862 ['v8_use_external_startup_data==1', { |
| 2863 'files': [ |
| 2864 '<(PRODUCT_DIR)/natives_blob.bin', |
| 2865 '<(PRODUCT_DIR)/snapshot_blob.bin', |
| 2866 ], |
| 2867 }], |
| 2868 ], |
| 2869 }, |
| 2870 ], |
2850 'includes': [ '../build/apk_test.gypi' ], | 2871 'includes': [ '../build/apk_test.gypi' ], |
2851 }, | 2872 }, |
2852 ], | 2873 ], |
2853 }], | 2874 }], |
2854 ['test_isolation_mode != "noop"', { | 2875 ['test_isolation_mode != "noop"', { |
2855 'targets': [ | 2876 'targets': [ |
2856 { | 2877 { |
2857 'target_name': 'unit_tests_run', | 2878 'target_name': 'unit_tests_run', |
2858 'type': 'none', | 2879 'type': 'none', |
2859 'dependencies': [ | 2880 'dependencies': [ |
(...skipping 10 matching lines...) Expand all Loading... |
2870 'dependencies': [ | 2891 'dependencies': [ |
2871 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 2892 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
2872 ], | 2893 ], |
2873 }], | 2894 }], |
2874 ], | 2895 ], |
2875 }, | 2896 }, |
2876 ], | 2897 ], |
2877 }], | 2898 }], |
2878 ], # 'conditions' | 2899 ], # 'conditions' |
2879 } | 2900 } |
OLD | NEW |