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

Side by Side Diff: content/content_tests.gypi

Issue 170913002: Add InputRouter perftests for touches and scroll gestures (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updates 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 (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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'test_support_content', 8 'target_name': 'test_support_content',
9 'type': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
(...skipping 849 matching lines...) Expand 10 before | Expand all | Expand 10 after
860 }, 860 },
861 ], 861 ],
862 }], 862 }],
863 ['OS!="ios"', { 863 ['OS!="ios"', {
864 'targets': [ 864 'targets': [
865 { 865 {
866 'target_name': 'content_perftests', 866 'target_name': 'content_perftests',
867 'type': '<(gtest_target_type)', 867 'type': '<(gtest_target_type)',
868 'defines!': ['CONTENT_IMPLEMENTATION'], 868 'defines!': ['CONTENT_IMPLEMENTATION'],
869 'dependencies': [ 869 'dependencies': [
870 'content.gyp:content_browser',
870 'content.gyp:content_common', 871 'content.gyp:content_common',
871 'test_support_content', 872 'test_support_content',
872 '../base/base.gyp:test_support_base', 873 '../base/base.gyp:test_support_base',
873 '../cc/cc.gyp:cc', 874 '../cc/cc.gyp:cc',
874 '../skia/skia.gyp:skia', 875 '../skia/skia.gyp:skia',
875 '../testing/gtest.gyp:gtest', 876 '../testing/gtest.gyp:gtest',
876 '../testing/perf/perf_test.gyp:*', 877 '../testing/perf/perf_test.gyp:*',
878 '../ui/accessibility/accessibility.gyp:accessibility',
tdresser 2014/02/18 19:46:00 What is this used for?
jdduke (slow) 2014/02/18 20:16:10 Nothing, see below.
877 '../ui/gfx/gfx.gyp:gfx', 879 '../ui/gfx/gfx.gyp:gfx',
878 '../ui/gfx/gfx.gyp:gfx_geometry', 880 '../ui/gfx/gfx.gyp:gfx_geometry',
881 '../ui/ui.gyp:ui',
tdresser 2014/02/18 19:46:00 Bringing in all of ui just for some vector operati
jdduke (slow) 2014/02/18 20:16:10 Oops, it's not necessary, neither is accessibility
879 ], 882 ],
880 'include_dirs': [ 883 'include_dirs': [
881 '..', 884 '..',
882 ], 885 ],
883 'sources': [ 886 'sources': [
887 'browser/renderer_host/input/input_router_impl_perftest.cc',
884 'common/cc_messages_perftest.cc', 888 'common/cc_messages_perftest.cc',
885 'test/run_all_perftests.cc', 889 'test/run_all_perftests.cc',
886 ], 890 ],
891 'conditions': [
892 ['OS == "android" and gtest_target_type == "shared_library"', {
893 'dependencies': [
894 '../testing/android/native_test.gyp:native_test_native_code',
895 ],
896 }],
897 ],
887 }, 898 },
888 { 899 {
889 'target_name': 'content_browser_test_support', 900 'target_name': 'content_browser_test_support',
890 'type': 'static_library', 901 'type': 'static_library',
891 'dependencies': [ 902 'dependencies': [
892 'content_shell_lib', 903 'content_shell_lib',
893 '../skia/skia.gyp:skia', 904 '../skia/skia.gyp:skia',
894 '../testing/gtest.gyp:gtest', 905 '../testing/gtest.gyp:gtest',
895 '../ui/accessibility/accessibility.gyp:ax_gen', 906 '../ui/accessibility/accessibility.gyp:ax_gen',
896 ], 907 ],
(...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after
1417 'apk_name': 'content_browsertests', 1428 'apk_name': 'content_browsertests',
1418 'java_in_dir': 'shell/android/browsertests_apk', 1429 'java_in_dir': 'shell/android/browsertests_apk',
1419 'resource_dir': 'shell/android/browsertests_apk/res', 1430 'resource_dir': 'shell/android/browsertests_apk/res',
1420 'native_lib_target': 'libcontent_browsertests', 1431 'native_lib_target': 'libcontent_browsertests',
1421 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont ent_shell.pak'], 1432 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont ent_shell.pak'],
1422 'asset_location': '<(PRODUCT_DIR)/content_shell/assets', 1433 'asset_location': '<(PRODUCT_DIR)/content_shell/assets',
1423 }, 1434 },
1424 'includes': [ '../build/java_apk.gypi' ], 1435 'includes': [ '../build/java_apk.gypi' ],
1425 }, 1436 },
1426 { 1437 {
1438 'target_name': 'content_perftests_apk',
1439 'type': 'none',
1440 'dependencies': [
1441 'content.gyp:content_java',
1442 'content_perftests',
1443 ],
1444 'variables': {
1445 'test_suite_name': 'content_perftests',
1446 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)content_p erftests<(SHARED_LIB_SUFFIX)',
1447 },
1448 'includes': [ '../build/apk_test.gypi' ],
1449 },
1450 {
1427 'target_name': 'chromium_linker_test_apk', 1451 'target_name': 'chromium_linker_test_apk',
1428 'type': 'none', 1452 'type': 'none',
1429 'dependencies': [ 1453 'dependencies': [
1430 'chromium_android_linker_test', 1454 'chromium_android_linker_test',
1431 'content.gyp:content_java', 1455 'content.gyp:content_java',
1432 'content_shell_java', 1456 'content_shell_java',
1433 ], 1457 ],
1434 'variables': { 1458 'variables': {
1435 'apk_name': 'ChromiumLinkerTest', 1459 'apk_name': 'ChromiumLinkerTest',
1436 'java_in_dir': 'shell/android/linker_test_apk', 1460 'java_in_dir': 'shell/android/linker_test_apk',
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
1678 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], 1702 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'],
1679 }, 1703 },
1680 ], 1704 ],
1681 }], 1705 }],
1682 ], 1706 ],
1683 }, 1707 },
1684 ], 1708 ],
1685 }], 1709 }],
1686 ], 1710 ],
1687 } 1711 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698