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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 151283003: Perf test to measure loading CDM library. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: nit Created 6 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
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 2789 matching lines...) Expand 10 before | Expand all | Expand 10 after
2800 # Required for WebRTC PyAuto tests. 2800 # Required for WebRTC PyAuto tests.
2801 'target_name': 'webrtc_test_tools', 2801 'target_name': 'webrtc_test_tools',
2802 'type': 'none', 2802 'type': 'none',
2803 'dependencies': [ 2803 'dependencies': [
2804 'pyautolib', 2804 'pyautolib',
2805 '../third_party/libjingle/libjingle.gyp:peerconnection_server', 2805 '../third_party/libjingle/libjingle.gyp:peerconnection_server',
2806 '../third_party/webrtc/tools/tools.gyp:frame_analyzer', 2806 '../third_party/webrtc/tools/tools.gyp:frame_analyzer',
2807 '../third_party/webrtc/tools/tools.gyp:rgba_to_i420_converter', 2807 '../third_party/webrtc/tools/tools.gyp:rgba_to_i420_converter',
2808 ], 2808 ],
2809 }, # target 'webrtc_test_tools' 2809 }, # target 'webrtc_test_tools'
2810 {
2811 # Executable to measure time to load CDM's.
ddorwin 2014/02/07 23:59:12 no apostrophe
shadi1 2014/02/08 01:01:22 Done.
2812 'target_name': 'cdm_load_perf_test',
2813 'type': '<(gtest_target_type)',
2814 'dependencies': [
2815 '../base/base.gyp:test_support_perf',
2816 '../testing/gtest.gyp:gtest',
2817 '../testing/perf/perf_test.gyp:*',
2818 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h',
2819 ],
2820 'sources': [
2821 'browser/media/load_cdm_benchmark_test.cc',
ddorwin 2014/02/07 23:59:12 nit: cdm_load in target vs load_cdm in filename -
shadi1 2014/02/08 01:01:22 Done.
2822 ],
2823 'include_dirs': [
2824 '..',
2825 '<(SHARED_INTERMEDIATE_DIR)',
2826 ],
2827 }, # target 'cdm_load_perf_test'
2810 ], 2828 ],
2811 'conditions': [ 2829 'conditions': [
2812 ['OS=="mac"', { 2830 ['OS=="mac"', {
2813 'targets': [ 2831 'targets': [
2814 { 2832 {
2815 # This is the mac equivalent of the security_tests target below. It 2833 # This is the mac equivalent of the security_tests target below. It
2816 # generates a framework bundle which bundles tests to be run in a 2834 # generates a framework bundle which bundles tests to be run in a
2817 # renderer process. The test code is built as a framework so it can be 2835 # renderer process. The test code is built as a framework so it can be
2818 # run in the context of a renderer without shipping the code to end 2836 # run in the context of a renderer without shipping the code to end
2819 # users. 2837 # users.
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after
3209 'utility', 3227 'utility',
3210 ], 3228 ],
3211 'sources': [ 3229 'sources': [
3212 'tools/service_discovery_sniffer/service_discovery_sniffer.h', 3230 'tools/service_discovery_sniffer/service_discovery_sniffer.h',
3213 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', 3231 'tools/service_discovery_sniffer/service_discovery_sniffer.cc',
3214 ], 3232 ],
3215 }] 3233 }]
3216 }], 3234 }],
3217 ], # 'conditions' 3235 ], # 'conditions'
3218 } 3236 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698