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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 18419003: [chromedriver] Remove dll build target. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments. Created 7 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « build/all.gyp ('k') | chrome/test/chromedriver/README.txt » ('j') | 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 'pyautolib_sources': [ 6 'pyautolib_sources': [
7 'app/chrome_command_ids.h', 7 'app/chrome_command_ids.h',
8 'app/chrome_dll_resource.h', 8 'app/chrome_dll_resource.h',
9 'common/automation_constants.h', 9 'common/automation_constants.h',
10 'common/pref_names.cc', 10 'common/pref_names.cc',
(...skipping 911 matching lines...) Expand 10 before | Expand all | Expand 10 after
922 '<(SHARED_INTERMEDIATE_DIR)/chrome/test/chromedriver/chrom e', 922 '<(SHARED_INTERMEDIATE_DIR)/chrome/test/chromedriver/chrom e',
923 'test/chromedriver/extension/background.js', 923 'test/chromedriver/extension/background.js',
924 'test/chromedriver/extension/manifest.json', 924 'test/chromedriver/extension/manifest.json',
925 ], 925 ],
926 'message': 'Generating sources for embedding automation extension', 926 'message': 'Generating sources for embedding automation extension',
927 }, 927 },
928 ], 928 ],
929 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 929 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
930 'msvs_disabled_warnings': [ 4267, ], 930 'msvs_disabled_warnings': [ 4267, ],
931 }, 931 },
932 # This is the new ChromeDriver based on DevTools.
932 { 933 {
933 'target_name': 'chromedriver2_lib', 934 'target_name': 'chromedriver2_lib',
934 'type': 'static_library', 935 'type': 'static_library',
935 'dependencies': [ 936 'dependencies': [
936 'chrome_devtools_lib', 937 'chrome_devtools_lib',
937 '../base/base.gyp:base', 938 '../base/base.gyp:base',
938 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 939 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
939 '../net/net.gyp:net', 940 '../net/net.gyp:net',
940 '../ui/ui.gyp:ui', 941 '../ui/ui.gyp:ui',
941 ], 942 ],
942 'include_dirs': [ 943 'include_dirs': [
943 '..', 944 '..',
944 ], 945 ],
945 'sources': [ 946 'sources': [
946 '../third_party/webdriver/atoms.cc', 947 '../third_party/webdriver/atoms.cc',
947 '../third_party/webdriver/atoms.h', 948 '../third_party/webdriver/atoms.h',
948 'test/chromedriver/alert_commands.cc', 949 'test/chromedriver/alert_commands.cc',
949 'test/chromedriver/alert_commands.h', 950 'test/chromedriver/alert_commands.h',
950 'test/chromedriver/basic_types.cc', 951 'test/chromedriver/basic_types.cc',
951 'test/chromedriver/basic_types.h', 952 'test/chromedriver/basic_types.h',
952 'test/chromedriver/capabilities.cc', 953 'test/chromedriver/capabilities.cc',
953 'test/chromedriver/capabilities.h', 954 'test/chromedriver/capabilities.h',
954 'test/chromedriver/chrome_launcher.cc', 955 'test/chromedriver/chrome_launcher.cc',
955 'test/chromedriver/chrome_launcher.h', 956 'test/chromedriver/chrome_launcher.h',
956 'test/chromedriver/chromedriver.cc',
957 'test/chromedriver/chromedriver.h',
958 'test/chromedriver/command.h', 957 'test/chromedriver/command.h',
959 'test/chromedriver/command_executor.h',
960 'test/chromedriver/command_executor_impl.cc',
961 'test/chromedriver/command_executor_impl.h',
962 'test/chromedriver/command_names.cc',
963 'test/chromedriver/command_names.h',
964 'test/chromedriver/commands.cc', 958 'test/chromedriver/commands.cc',
965 'test/chromedriver/commands.h', 959 'test/chromedriver/commands.h',
966 'test/chromedriver/element_commands.cc', 960 'test/chromedriver/element_commands.cc',
967 'test/chromedriver/element_commands.h', 961 'test/chromedriver/element_commands.h',
968 'test/chromedriver/element_util.cc', 962 'test/chromedriver/element_util.cc',
969 'test/chromedriver/element_util.h', 963 'test/chromedriver/element_util.h',
970 'test/chromedriver/key_converter.cc', 964 'test/chromedriver/key_converter.cc',
971 'test/chromedriver/key_converter.h', 965 'test/chromedriver/key_converter.h',
972 'test/chromedriver/keycode_text_conversion.h', 966 'test/chromedriver/keycode_text_conversion.h',
973 'test/chromedriver/keycode_text_conversion_mac.mm', 967 'test/chromedriver/keycode_text_conversion_mac.mm',
974 'test/chromedriver/keycode_text_conversion_win.cc', 968 'test/chromedriver/keycode_text_conversion_win.cc',
975 'test/chromedriver/keycode_text_conversion_x.cc', 969 'test/chromedriver/keycode_text_conversion_x.cc',
976 'test/chromedriver/logging.cc', 970 'test/chromedriver/logging.cc',
977 'test/chromedriver/logging.h', 971 'test/chromedriver/logging.h',
978 'test/chromedriver/session.cc', 972 'test/chromedriver/session.cc',
979 'test/chromedriver/session.h', 973 'test/chromedriver/session.h',
980 'test/chromedriver/session_commands.cc', 974 'test/chromedriver/session_commands.cc',
981 'test/chromedriver/session_commands.h', 975 'test/chromedriver/session_commands.h',
982 'test/chromedriver/session_map.h', 976 'test/chromedriver/session_map.h',
983 'test/chromedriver/synchronized_map.h', 977 'test/chromedriver/synchronized_map.h',
984 'test/chromedriver/util.cc', 978 'test/chromedriver/util.cc',
985 'test/chromedriver/util.h', 979 'test/chromedriver/util.h',
986 'test/chromedriver/window_commands.cc', 980 'test/chromedriver/window_commands.cc',
987 'test/chromedriver/window_commands.h', 981 'test/chromedriver/window_commands.h',
988 ], 982 ],
989 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 983 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
990 'msvs_disabled_warnings': [ 4267, ], 984 'msvs_disabled_warnings': [ 4267, ],
991 }, 985 },
992 # This is the new ChromeDriver based on DevTools.
993 {
994 'target_name': 'chromedriver2',
995 'type': 'loadable_module',
996 'dependencies': [
997 'chromedriver2_lib',
998 '../base/base.gyp:base',
999 ],
1000 'include_dirs': [
1001 '..',
1002 ],
1003 'sources': [
1004 'test/chromedriver/chromedriver_shared_library.cc',
1005 ],
1006 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1007 'msvs_disabled_warnings': [ 4267, ],
1008 },
1009 { 986 {
1010 'target_name': 'chromedriver2_server_lib', 987 'target_name': 'chromedriver2_server_lib',
1011 'type': 'static_library', 988 'type': 'static_library',
1012 'dependencies': [ 989 'dependencies': [
1013 'chromedriver2_lib', 990 'chromedriver2_lib',
1014 '../base/base.gyp:base', 991 '../base/base.gyp:base',
1015 ], 992 ],
1016 'include_dirs': [ 993 'include_dirs': [
1017 '..', 994 '..',
1018 ], 995 ],
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
1069 'test/chromedriver/chrome/performance_logger_unittest.cc', 1046 'test/chromedriver/chrome/performance_logger_unittest.cc',
1070 'test/chromedriver/chrome/status_unittest.cc', 1047 'test/chromedriver/chrome/status_unittest.cc',
1071 'test/chromedriver/chrome/stub_chrome.cc', 1048 'test/chromedriver/chrome/stub_chrome.cc',
1072 'test/chromedriver/chrome/stub_chrome.h', 1049 'test/chromedriver/chrome/stub_chrome.h',
1073 'test/chromedriver/chrome/stub_devtools_client.cc', 1050 'test/chromedriver/chrome/stub_devtools_client.cc',
1074 'test/chromedriver/chrome/stub_devtools_client.h', 1051 'test/chromedriver/chrome/stub_devtools_client.h',
1075 'test/chromedriver/chrome/stub_web_view.cc', 1052 'test/chromedriver/chrome/stub_web_view.cc',
1076 'test/chromedriver/chrome/stub_web_view.h', 1053 'test/chromedriver/chrome/stub_web_view.h',
1077 'test/chromedriver/chrome/web_view_impl_unittest.cc', 1054 'test/chromedriver/chrome/web_view_impl_unittest.cc',
1078 'test/chromedriver/chrome_launcher_unittest.cc', 1055 'test/chromedriver/chrome_launcher_unittest.cc',
1079 'test/chromedriver/chromedriver_unittest.cc',
1080 'test/chromedriver/command_executor_impl_unittest.cc',
1081 'test/chromedriver/commands_unittest.cc', 1056 'test/chromedriver/commands_unittest.cc',
1082 'test/chromedriver/fake_session_accessor.cc', 1057 'test/chromedriver/fake_session_accessor.cc',
1083 'test/chromedriver/fake_session_accessor.h', 1058 'test/chromedriver/fake_session_accessor.h',
1084 'test/chromedriver/logging_unittest.cc', 1059 'test/chromedriver/logging_unittest.cc',
1085 'test/chromedriver/server/http_handler_unittest.cc', 1060 'test/chromedriver/server/http_handler_unittest.cc',
1086 'test/chromedriver/server/http_response_unittest.cc', 1061 'test/chromedriver/server/http_response_unittest.cc',
1087 'test/chromedriver/session_commands_unittest.cc', 1062 'test/chromedriver/session_commands_unittest.cc',
1088 'test/chromedriver/session_unittest.cc', 1063 'test/chromedriver/session_unittest.cc',
1089 'test/chromedriver/synchronized_map_unittest.cc', 1064 'test/chromedriver/synchronized_map_unittest.cc',
1090 'test/chromedriver/util_unittest.cc', 1065 'test/chromedriver/util_unittest.cc',
(...skipping 2326 matching lines...) Expand 10 before | Expand all | Expand 10 after
3417 '../base/base.gyp:test_support_base', 3392 '../base/base.gyp:test_support_base',
3418 ], 3393 ],
3419 'sources': [ 3394 'sources': [
3420 'browser/local_discovery/service_discovery_sniffer.h', 3395 'browser/local_discovery/service_discovery_sniffer.h',
3421 'browser/local_discovery/service_discovery_sniffer.cc', 3396 'browser/local_discovery/service_discovery_sniffer.cc',
3422 ], 3397 ],
3423 }] 3398 }]
3424 }], 3399 }],
3425 ], # 'conditions' 3400 ], # 'conditions'
3426 } 3401 }
OLDNEW
« no previous file with comments | « build/all.gyp ('k') | chrome/test/chromedriver/README.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698