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