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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 605243002: Explicitly depend on ICU to fix GPU isolate races. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add a common base target Created 6 years, 2 months 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'includes': [ 5 'includes': [
6 'js_unittest_vars.gypi', 6 'js_unittest_vars.gypi',
7 ], 7 ],
8 'targets': [ 8 'targets': [
9 { 9 {
10 'target_name': 'interactive_ui_tests', 10 'target_name': 'interactive_ui_tests',
(...skipping 2928 matching lines...) Expand 10 before | Expand all | Expand 10 after
2939 ], 2939 ],
2940 'sources': [ 2940 'sources': [
2941 'sync_integration_tests.isolate', 2941 'sync_integration_tests.isolate',
2942 ], 2942 ],
2943 }, 2943 },
2944 ], 2944 ],
2945 'conditions': [ 2945 'conditions': [
2946 ['archive_gpu_tests==1', { 2946 ['archive_gpu_tests==1', {
2947 'targets': [ 2947 'targets': [
2948 { 2948 {
2949 'target_name': 'gpu_tests_base',
2950 'type': 'none',
2951 'dependencies': [
2952 # depend on icu to fix races. http://crbug.com/417583
M-A Ruel 2014/09/26 18:01:59 AFAIK it's not a TODO so no need to list the bug o
2953 '../third_party/icu/icu.gyp:icudata',
Ken Russell (switch to Gerrit) 2014/09/26 17:54:00 Consider depending on '../third_party/icu/icu.gyp:
2954 ],
2955 'direct_dependent_settings': {
2956 'includes': [
2957 '../build/isolate.gypi',
2958 ],
2959 },
2960 },
2961 {
2949 'target_name': 'angle_unittests_run', 2962 'target_name': 'angle_unittests_run',
2950 'type': 'none', 2963 'type': 'none',
2951 'dependencies': [ 2964 'dependencies': [
2952 '../gpu/gpu.gyp:angle_unittests', 2965 '../gpu/gpu.gyp:angle_unittests',
2966 'gpu_tests_base',
2953 ], 2967 ],
2954 'includes': [ 2968 'includes': [
2955 '../build/isolate.gypi',
2956 'angle_unittests.isolate', 2969 'angle_unittests.isolate',
2957 ], 2970 ],
2958 'sources': [ 2971 'sources': [
2959 'angle_unittests.isolate', 2972 'angle_unittests.isolate',
2960 ], 2973 ],
2961 }, 2974 },
2962 { 2975 {
2963 'target_name': 'gl_tests_run', 2976 'target_name': 'gl_tests_run',
2964 'type': 'none', 2977 'type': 'none',
2965 'dependencies': [ 2978 'dependencies': [
2966 '../gpu/gpu.gyp:gl_tests', 2979 '../gpu/gpu.gyp:gl_tests',
2980 'gpu_tests_base',
2967 ], 2981 ],
2968 'includes': [ 2982 'includes': [
2969 '../build/isolate.gypi',
2970 'gl_tests.isolate', 2983 'gl_tests.isolate',
2971 ], 2984 ],
2972 'sources': [ 2985 'sources': [
2973 'gl_tests.isolate', 2986 'gl_tests.isolate',
2974 ], 2987 ],
2975 }, 2988 },
2976 { 2989 {
2977 'target_name': 'tab_capture_end2end_tests_run', 2990 'target_name': 'tab_capture_end2end_tests_run',
2978 'type': 'none', 2991 'type': 'none',
2979 'dependencies': [ 2992 'dependencies': [
2980 'browser_tests_run', 2993 'browser_tests_run',
2994 'gpu_tests_base',
2981 ], 2995 ],
2982 'includes': [ 2996 'includes': [
2983 '../build/isolate.gypi',
2984 'tab_capture_end2end_tests.isolate', 2997 'tab_capture_end2end_tests.isolate',
2985 ], 2998 ],
2986 'sources': [ 2999 'sources': [
2987 'tab_capture_end2end_tests.isolate', 3000 'tab_capture_end2end_tests.isolate',
2988 ], 3001 ],
2989 }, 3002 },
2990 { 3003 {
2991 'target_name': 'telemetry_gpu_test_run', 3004 'target_name': 'telemetry_gpu_test_run',
2992 'type': 'none', 3005 'type': 'none',
2993 'dependencies': [ 3006 'dependencies': [
2994 'chrome_run', 3007 'chrome_run',
2995 '../tools/telemetry/telemetry.gyp:bitmaptools#host', 3008 '../tools/telemetry/telemetry.gyp:bitmaptools#host',
3009 'gpu_tests_base',
2996 ], 3010 ],
2997 'includes': [ 3011 'includes': [
2998 '../build/isolate.gypi',
2999 'telemetry_gpu_test.isolate', 3012 'telemetry_gpu_test.isolate',
3000 ], 3013 ],
3001 'sources': [ 3014 'sources': [
3002 'telemetry_gpu_test.isolate', 3015 'telemetry_gpu_test.isolate',
3003 ], 3016 ],
3004 }, 3017 },
3005 { 3018 {
3006 'target_name': 'gpu_unittests_run', 3019 'target_name': 'gpu_unittests_run',
3007 'type': 'none', 3020 'type': 'none',
3008 'dependencies': [ 3021 'dependencies': [
3009 '../gpu/gpu.gyp:gpu_unittests', 3022 '../gpu/gpu.gyp:gpu_unittests',
3023 'gpu_tests_base',
3010 ], 3024 ],
3011 'includes': [ 3025 'includes': [
3012 '../build/isolate.gypi',
3013 'gpu_unittests.isolate', 3026 'gpu_unittests.isolate',
3014 ], 3027 ],
3015 'sources': [ 3028 'sources': [
3016 'gpu_unittests.isolate', 3029 'gpu_unittests.isolate',
3017 ], 3030 ],
3018 }, 3031 },
3019 ], 3032 ],
3020 'conditions': [ 3033 'conditions': [
3021 ['internal_gles2_conform_tests==1', { 3034 ['internal_gles2_conform_tests==1', {
3022 'targets': [ 3035 'targets': [
3023 { 3036 {
3024 'target_name': 'gles2_conform_test_run', 3037 'target_name': 'gles2_conform_test_run',
3025 'type': 'none', 3038 'type': 'none',
3026 'dependencies': [ 3039 'dependencies': [
3027 '../gpu/gles2_conform_support/gles2_conform_test.gyp:gles2_c onform_test', 3040 '../gpu/gles2_conform_support/gles2_conform_test.gyp:gles2_c onform_test',
3041 'gpu_tests_base',
3028 ], 3042 ],
3029 'includes': [ 3043 'includes': [
3030 '../build/isolate.gypi',
3031 'gles2_conform_test.isolate', 3044 'gles2_conform_test.isolate',
3032 ], 3045 ],
3033 'sources': [ 3046 'sources': [
3034 'gles2_conform_test.isolate', 3047 'gles2_conform_test.isolate',
3035 ], 3048 ],
3036 }, 3049 },
3037 ], 3050 ],
3038 }], 3051 }],
3039 ], 3052 ],
3040 }], 3053 }],
(...skipping 17 matching lines...) Expand all
3058 ['enable_webrtc==1', { 3071 ['enable_webrtc==1', {
3059 'dependencies': [ 3072 'dependencies': [
3060 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc' 3073 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc'
3061 ] 3074 ]
3062 }], 3075 }],
3063 ], 3076 ],
3064 }] 3077 }]
3065 }], 3078 }],
3066 ], # 'conditions' 3079 ], # 'conditions'
3067 } 3080 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698