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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 931503002: Cleanup: Move sqlite_persistent_cookie_store_perftest.cc into content_perftests target. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 | chrome/test/perf/BUILD.gn » ('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 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 'variables': { 5 'variables': {
6 'chrome_browser_extensions_test_support_sources': [ 6 'chrome_browser_extensions_test_support_sources': [
7 # A list of sources which is shared between different browser tests. 7 # A list of sources which is shared between different browser tests.
8 'browser/apps/app_browsertest_util.cc', 8 'browser/apps/app_browsertest_util.cc',
9 'browser/apps/app_browsertest_util.h', 9 'browser/apps/app_browsertest_util.h',
10 'browser/extensions/browsertest_util.cc', 10 'browser/extensions/browsertest_util.cc',
(...skipping 2867 matching lines...) Expand 10 before | Expand all | Expand 10 after
2878 ['OS!="mac"', { 2878 ['OS!="mac"', {
2879 'targets': [ 2879 'targets': [
2880 { 2880 {
2881 # This test appears to be a legacy target consisting of files not yet 2881 # This test appears to be a legacy target consisting of files not yet
2882 # moved elsewhere. 2882 # moved elsewhere.
2883 # 2883 #
2884 # GN version: //chrome/test/perf 2884 # GN version: //chrome/test/perf
2885 'target_name': 'perf_tests', 2885 'target_name': 'perf_tests',
2886 'type': 'executable', 2886 'type': 'executable',
2887 'dependencies': [ 2887 'dependencies': [
2888 'browser',
2889 'chrome_resources.gyp:chrome_resources',
2890 'chrome_resources.gyp:chrome_strings',
2891 'common',
2892 'renderer',
2893 '../content/content.gyp:content_gpu',
2894 '../content/content_shell_and_tests.gyp:test_support_content',
2895 '../base/base.gyp:base', 2888 '../base/base.gyp:base',
2896 '../base/base.gyp:test_support_base',
2897 '../base/base.gyp:test_support_perf', 2889 '../base/base.gyp:test_support_perf',
2898 '../skia/skia.gyp:skia',
2899 '../testing/gtest.gyp:gtest', 2890 '../testing/gtest.gyp:gtest',
2891 '../url/url.gyp:url_lib',
2900 ], 2892 ],
2901 'sources': [ 2893 'sources': [
2902 # Note: Sources list duplicated in GN build. 2894 # Note: Sources list duplicated in GN build.
2903 '../content/browser/net/sqlite_persistent_cookie_store_perftest.cc',
2904 'test/perf/perftests.cc', 2895 'test/perf/perftests.cc',
2905 'test/perf/url_parse_perftest.cc', 2896 'test/perf/url_parse_perftest.cc',
2906 ], 2897 ],
2907 'conditions': [ 2898 'conditions': [
2908 ['use_x11==1', {
2909 'dependencies': [
2910 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2911 ],
2912 }],
2913 ['OS=="win"', { 2899 ['OS=="win"', {
2914 'configurations': { 2900 'configurations': {
2915 'Debug_Base': { 2901 'Debug_Base': {
2916 'msvs_settings': { 2902 'msvs_settings': {
2917 'VCLinkerTool': { 2903 'VCLinkerTool': {
2918 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', 2904 'LinkIncremental': '<(msvs_large_module_debug_link_mode)',
2919 }, 2905 },
2920 }, 2906 },
2921 }, 2907 },
2922 }, 2908 },
2923 'conditions': [ 2909 'conditions': [
2924 ['win_use_allocator_shim==1', { 2910 ['win_use_allocator_shim==1', {
2925 'dependencies': [ 2911 'dependencies': [
2926 '<(allocator_target)', 2912 '<(allocator_target)',
2927 ], 2913 ],
2928 }], 2914 }],
2929 ], 2915 ],
2930 }], 2916 }],
2931 ['toolkit_views==1', {
2932 'dependencies': [
2933 '../ui/views/views.gyp:views',
2934 ],
2935 }],
2936 ['os_posix == 1 and OS != "mac" and OS != "android"', { 2917 ['os_posix == 1 and OS != "mac" and OS != "android"', {
2937 'conditions': [ 2918 'conditions': [
2938 ['use_allocator!="none"', { 2919 ['use_allocator!="none"', {
2939 'dependencies': [ 2920 'dependencies': [
2940 '../base/allocator/allocator.gyp:allocator', 2921 '../base/allocator/allocator.gyp:allocator',
2941 ], 2922 ],
2942 }], 2923 }],
2943 ], 2924 ],
2944 }], 2925 }],
2945 ['OS=="linux" and enable_webrtc==1', {
2946 'dependencies': [
2947 '../third_party/libjingle/libjingle.gyp:libpeerconnection',
2948 ],
2949 }],
2950 ], 2926 ],
2951 }, 2927 },
2952 ], 2928 ],
2953 },], # OS!="mac" 2929 },], # OS!="mac"
2954 ['OS == "android"', { 2930 ['OS == "android"', {
2955 'targets': [ 2931 'targets': [
2956 { 2932 {
2957 # GN: //chrome/android:chrome_shell_test_apk 2933 # GN: //chrome/android:chrome_shell_test_apk
2958 'target_name': 'chrome_shell_test_apk', 2934 'target_name': 'chrome_shell_test_apk',
2959 'type': 'none', 2935 'type': 'none',
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
3228 ['enable_webrtc==1', { 3204 ['enable_webrtc==1', {
3229 'dependencies': [ 3205 'dependencies': [
3230 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc' 3206 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc'
3231 ] 3207 ]
3232 }], 3208 }],
3233 ], 3209 ],
3234 }] 3210 }]
3235 }], 3211 }],
3236 ], # 'conditions' 3212 ], # 'conditions'
3237 } 3213 }
OLDNEW
« no previous file with comments | « no previous file | chrome/test/perf/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698