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

Side by Side Diff: base/base.gyp

Issue 551183002: Microbenchmark for the cost of posting tasks to different pump types (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/win_precompile.gypi', 10 '../build/win_precompile.gypi',
(...skipping 797 matching lines...) Expand 10 before | Expand all | Expand 10 after
808 { 808 {
809 'target_name': 'base_perftests', 809 'target_name': 'base_perftests',
810 'type': '<(gtest_target_type)', 810 'type': '<(gtest_target_type)',
811 'dependencies': [ 811 'dependencies': [
812 'base', 812 'base',
813 'test_support_base', 813 'test_support_base',
814 '../testing/gtest.gyp:gtest', 814 '../testing/gtest.gyp:gtest',
815 ], 815 ],
816 'sources': [ 816 'sources': [
817 'threading/thread_perftest.cc', 817 'threading/thread_perftest.cc',
818 'message_loop/message_pump_perftest.cc',
818 'test/run_all_unittests.cc', 819 'test/run_all_unittests.cc',
819 '../testing/perf/perf_test.cc' 820 '../testing/perf/perf_test.cc'
820 ], 821 ],
821 'conditions': [ 822 'conditions': [
822 ['OS == "android"', { 823 ['OS == "android"', {
823 'dependencies': [ 824 'dependencies': [
824 '../testing/android/native_test.gyp:native_test_native_code', 825 '../testing/android/native_test.gyp:native_test_native_code',
825 ], 826 ],
826 }], 827 }],
827 ], 828 ],
(...skipping 659 matching lines...) Expand 10 before | Expand all | Expand 10 after
1487 'dependencies': [ 1488 'dependencies': [
1488 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 1489 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
1489 ], 1490 ],
1490 }], 1491 }],
1491 ], 1492 ],
1492 }, 1493 },
1493 ], 1494 ],
1494 }], 1495 }],
1495 ], 1496 ],
1496 } 1497 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698