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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 184733004: Perf tests that measure time to load libraries (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix Windows compile issue. Created 6 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
« no previous file with comments | « chrome/browser/load_library_perf_test.cc ('k') | 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 'variables' : { 5 'variables' : {
6 'chromedriver_unittest_sources': [ 6 'chromedriver_unittest_sources': [
7 'test/chromedriver/capabilities_unittest.cc', 7 'test/chromedriver/capabilities_unittest.cc',
8 'test/chromedriver/chrome/chrome_finder_unittest.cc', 8 'test/chromedriver/chrome/chrome_finder_unittest.cc',
9 'test/chromedriver/chrome/console_logger_unittest.cc', 9 'test/chromedriver/chrome/console_logger_unittest.cc',
10 'test/chromedriver/chrome/device_manager_unittest.cc', 10 'test/chromedriver/chrome/device_manager_unittest.cc',
(...skipping 2815 matching lines...) Expand 10 before | Expand all | Expand 10 after
2826 # Required for WebRTC PyAuto tests. 2826 # Required for WebRTC PyAuto tests.
2827 'target_name': 'webrtc_test_tools', 2827 'target_name': 'webrtc_test_tools',
2828 'type': 'none', 2828 'type': 'none',
2829 'dependencies': [ 2829 'dependencies': [
2830 'pyautolib', 2830 'pyautolib',
2831 '../third_party/libjingle/libjingle.gyp:peerconnection_server', 2831 '../third_party/libjingle/libjingle.gyp:peerconnection_server',
2832 '../third_party/webrtc/tools/tools.gyp:frame_analyzer', 2832 '../third_party/webrtc/tools/tools.gyp:frame_analyzer',
2833 '../third_party/webrtc/tools/tools.gyp:rgba_to_i420_converter', 2833 '../third_party/webrtc/tools/tools.gyp:rgba_to_i420_converter',
2834 ], 2834 ],
2835 }, # target 'webrtc_test_tools' 2835 }, # target 'webrtc_test_tools'
2836 {
2837 # Executable to measure time to load libraries.
2838 'target_name': 'load_library_perf_tests',
sky 2014/03/01 00:09:21 Is there a reason this needs to be in its own targ
shadi 2014/03/01 00:35:22 Similar to other perf tests targets. Main reason i
2839 'type': '<(gtest_target_type)',
2840 'dependencies': [
2841 '../base/base.gyp:test_support_perf',
2842 '../testing/gtest.gyp:gtest',
2843 '../testing/perf/perf_test.gyp:*',
2844 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h',
2845 ],
2846 'sources': [
2847 'browser/load_library_perf_test.cc',
2848 ],
2849 'include_dirs': [
2850 '..',
2851 '<(SHARED_INTERMEDIATE_DIR)',
2852 ],
2853 }, # target 'load_library_perf_tests'
2836 ], 2854 ],
2837 'conditions': [ 2855 'conditions': [
2838 ['OS=="mac"', { 2856 ['OS=="mac"', {
2839 'targets': [ 2857 'targets': [
2840 { 2858 {
2841 # This is the mac equivalent of the security_tests target below. It 2859 # This is the mac equivalent of the security_tests target below. It
2842 # generates a framework bundle which bundles tests to be run in a 2860 # generates a framework bundle which bundles tests to be run in a
2843 # renderer process. The test code is built as a framework so it can be 2861 # renderer process. The test code is built as a framework so it can be
2844 # run in the context of a renderer without shipping the code to end 2862 # run in the context of a renderer without shipping the code to end
2845 # users. 2863 # users.
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
3232 'utility', 3250 'utility',
3233 ], 3251 ],
3234 'sources': [ 3252 'sources': [
3235 'tools/service_discovery_sniffer/service_discovery_sniffer.h', 3253 'tools/service_discovery_sniffer/service_discovery_sniffer.h',
3236 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', 3254 'tools/service_discovery_sniffer/service_discovery_sniffer.cc',
3237 ], 3255 ],
3238 }] 3256 }]
3239 }], 3257 }],
3240 ], # 'conditions' 3258 ], # 'conditions'
3241 } 3259 }
OLDNEW
« no previous file with comments | « chrome/browser/load_library_perf_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698