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

Side by Side Diff: content/content_tests.gypi

Issue 971393002: Adds a couple of simple micro benchmarks for the TaskQueueManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Makes the number of tasks in flight much more variable Created 5 years, 9 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
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 { 5 {
6 'variables': { 6 'variables': {
7 'layouttest_support_content_sources': [ 7 'layouttest_support_content_sources': [
8 'public/test/layouttest_support.h', 8 'public/test/layouttest_support.h',
9 'public/test/nested_message_pump_android.cc', 9 'public/test/nested_message_pump_android.cc',
10 'public/test/nested_message_pump_android.h', 10 'public/test/nested_message_pump_android.h',
(...skipping 1225 matching lines...) Expand 10 before | Expand all | Expand 10 after
1236 '../testing/perf/perf_test.gyp:*', 1236 '../testing/perf/perf_test.gyp:*',
1237 '../ui/gfx/gfx.gyp:gfx', 1237 '../ui/gfx/gfx.gyp:gfx',
1238 '../ui/gfx/gfx.gyp:gfx_geometry', 1238 '../ui/gfx/gfx.gyp:gfx_geometry',
1239 ], 1239 ],
1240 'include_dirs': [ 1240 'include_dirs': [
1241 '..', 1241 '..',
1242 ], 1242 ],
1243 'sources': [ 1243 'sources': [
1244 'browser/net/sqlite_persistent_cookie_store_perftest.cc', 1244 'browser/net/sqlite_persistent_cookie_store_perftest.cc',
1245 'browser/renderer_host/input/input_router_impl_perftest.cc', 1245 'browser/renderer_host/input/input_router_impl_perftest.cc',
1246 'renderer/scheduler/task_queue_manager_perftest.cc',
Sami 2015/03/05 19:26:10 nit: Please keep these sorted.
alex clarke (OOO till 29th) 2015/03/06 11:07:30 Done.
1246 'common/cc_messages_perftest.cc', 1247 'common/cc_messages_perftest.cc',
1247 'test/run_all_perftests.cc', 1248 'test/run_all_perftests.cc',
1248 ], 1249 ],
1249 'conditions': [ 1250 'conditions': [
1250 ['OS == "android"', { 1251 ['OS == "android"', {
1251 'dependencies': [ 1252 'dependencies': [
1252 '../testing/android/native_test.gyp:native_test_native_code', 1253 '../testing/android/native_test.gyp:native_test_native_code',
1253 ], 1254 ],
1254 }], 1255 }],
1255 ['OS=="win" and component!="shared_library" and win_use_allocator_sh im==1', { 1256 ['OS=="win" and component!="shared_library" and win_use_allocator_sh im==1', {
(...skipping 890 matching lines...) Expand 10 before | Expand all | Expand 10 after
2146 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], 2147 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'],
2147 }, 2148 },
2148 ], 2149 ],
2149 }], 2150 }],
2150 ], 2151 ],
2151 }, 2152 },
2152 ], 2153 ],
2153 }], 2154 }],
2154 ], 2155 ],
2155 } 2156 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698