Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(417)

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 594603003: Infrastructure for reading V8's initial snapshot from external files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sync Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/installer/mini_installer.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/installer/mini_installer.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698