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

Unified Diff: components/components_tests.gypi

Issue 13392002: Add perf tests target to components. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
Index: components/components_tests.gypi
diff --git a/components/components_tests.gypi b/components/components_tests.gypi
index 158a92bd22cf5fed81c3c5e1210c380804335555..7695f76992be51646c5c535601f47186ef5b4870 100644
--- a/components/components_tests.gypi
+++ b/components/components_tests.gypi
@@ -55,7 +55,34 @@
],
# TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
'msvs_disabled_warnings': [4267, ],
- }
+ },
+ {
+ 'target_name': 'components_perftests',
+ 'type': '<(gtest_target_type)',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../base/base.gyp:test_support_perf',
+ '../content/content.gyp:test_support_content',
+ '../testing/gtest.gyp:gtest',
+ '../ui/compositor/compositor.gyp:compositor',
+ 'visitedlink_browser',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'visitedlink/test/visitedlink_perftest.cc',
+ ],
+ 'conditions': [
+ ['OS == "android" and gtest_target_type == "shared_library"', {
+ 'dependencies': [
+ '../testing/android/native_test.gyp:native_test_native_code',
+ ],
+ }],
+ ],
+ # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
+ 'msvs_disabled_warnings': [ 4267, ],
+ },
],
'conditions': [
['OS == "android" and gtest_target_type == "shared_library"', {

Powered by Google App Engine
This is Rietveld 408576698