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

Side by Side Diff: extensions/extensions.gyp

Issue 562273006: Move the last extensions/common unit tests to extensions_unittests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@manifest2
Patch Set: (file-tests) rebase Created 6 years, 3 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 930 matching lines...) Expand 10 before | Expand all | Expand 10 after
941 'common/value_builder.cc', 941 'common/value_builder.cc',
942 'common/value_builder.h', 942 'common/value_builder.h',
943 'renderer/test_extensions_renderer_client.cc', 943 'renderer/test_extensions_renderer_client.cc',
944 'renderer/test_extensions_renderer_client.h', 944 'renderer/test_extensions_renderer_client.h',
945 'test/result_catcher.cc', 945 'test/result_catcher.cc',
946 'test/result_catcher.h', 946 'test/result_catcher.h',
947 'test/test_extensions_client.cc', 947 'test/test_extensions_client.cc',
948 'test/test_extensions_client.h', 948 'test/test_extensions_client.h',
949 'test/test_permission_message_provider.cc', 949 'test/test_permission_message_provider.cc',
950 'test/test_permission_message_provider.h', 950 'test/test_permission_message_provider.h',
951 'test/test_permissions_provider.cc',
952 'test/test_permissions_provider.h',
953 ], 951 ],
954 # Disable c4267 warnings until we fix size_t to int truncations. 952 # Disable c4267 warnings until we fix size_t to int truncations.
955 'msvs_disabled_warnings': [ 4267, ], 953 'msvs_disabled_warnings': [ 4267, ],
956 }, 954 },
957 { 955 {
958 # The pak file generated by this target is intended to be shared by 956 # The pak file generated by this target is intended to be shared by
959 # both shell and test targets. It was combined because it might help a 957 # both shell and test targets. It was combined because it might help a
960 # little bit with build time by avoiding a repack step (one instead of 958 # little bit with build time by avoiding a repack step (one instead of
961 # two). 959 # two).
962 'target_name': 'extensions_shell_and_test_pak', 960 'target_name': 'extensions_shell_and_test_pak',
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
998 '<(SHARED_INTERMEDIATE_DIR)/ui/strings/ui_strings_en-US.pak', 996 '<(SHARED_INTERMEDIATE_DIR)/ui/strings/ui_strings_en-US.pak',
999 '<(SHARED_INTERMEDIATE_DIR)/webkit/devtools_resources.pak', 997 '<(SHARED_INTERMEDIATE_DIR)/webkit/devtools_resources.pak',
1000 ], 998 ],
1001 'pak_output': '<(PRODUCT_DIR)/extensions_shell_and_test.pak', 999 'pak_output': '<(PRODUCT_DIR)/extensions_shell_and_test.pak',
1002 }, 1000 },
1003 'includes': [ '../build/repack_action.gypi' ], 1001 'includes': [ '../build/repack_action.gypi' ],
1004 }, 1002 },
1005 ], 1003 ],
1006 }, 1004 },
1007 { 1005 {
1008 # TODO(tfarina): Many extension unit tests run as part of Chrome's
1009 # unit_tests target. They should be moved here, which may require some
1010 # refactoring (ExtensionsBrowserClient, TestingProfile, etc.).
1011 # http://crbug.com/348066
1012 'target_name': 'extensions_unittests', 1006 'target_name': 'extensions_unittests',
1013 'type': 'executable', 1007 'type': 'executable',
1014 'dependencies': [ 1008 'dependencies': [
1015 '../base/base.gyp:base', 1009 '../base/base.gyp:base',
1016 '../base/base.gyp:base_prefs_test_support', 1010 '../base/base.gyp:base_prefs_test_support',
1017 '../base/base.gyp:test_support_base', 1011 '../base/base.gyp:test_support_base',
1018 '../components/components.gyp:keyed_service_content', 1012 '../components/components.gyp:keyed_service_content',
1019 '../components/components.gyp:user_prefs', 1013 '../components/components.gyp:user_prefs',
1020 '../content/content_shell_and_tests.gyp:test_support_content', 1014 '../content/content_shell_and_tests.gyp:test_support_content',
1021 '../device/bluetooth/bluetooth.gyp:device_bluetooth_mocks', 1015 '../device/bluetooth/bluetooth.gyp:device_bluetooth_mocks',
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
1083 'browser/value_store/testing_value_store_unittest.cc', 1077 'browser/value_store/testing_value_store_unittest.cc',
1084 'browser/value_store/value_store_change_unittest.cc', 1078 'browser/value_store/value_store_change_unittest.cc',
1085 'browser/value_store/value_store_frontend_unittest.cc', 1079 'browser/value_store/value_store_frontend_unittest.cc',
1086 'browser/value_store/value_store_unittest.cc', 1080 'browser/value_store/value_store_unittest.cc',
1087 'browser/value_store/value_store_unittest.h', 1081 'browser/value_store/value_store_unittest.h',
1088 'browser/verified_contents_unittest.cc', 1082 'browser/verified_contents_unittest.cc',
1089 'browser/warning_service_unittest.cc', 1083 'browser/warning_service_unittest.cc',
1090 'common/api/sockets/sockets_manifest_permission_unittest.cc', 1084 'common/api/sockets/sockets_manifest_permission_unittest.cc',
1091 'common/csp_validator_unittest.cc', 1085 'common/csp_validator_unittest.cc',
1092 'common/event_filter_unittest.cc', 1086 'common/event_filter_unittest.cc',
1087 'common/extension_l10n_util_unittest.cc',
1093 'common/extension_resource_unittest.cc', 1088 'common/extension_resource_unittest.cc',
1094 'common/extension_set_unittest.cc', 1089 'common/extension_set_unittest.cc',
1095 'common/features/base_feature_provider_unittest.cc', 1090 'common/features/base_feature_provider_unittest.cc',
1096 'common/features/complex_feature_unittest.cc', 1091 'common/features/complex_feature_unittest.cc',
1097 'common/features/simple_feature_unittest.cc', 1092 'common/features/simple_feature_unittest.cc',
1093 'common/file_util_unittest.cc',
1098 'common/manifest_handler_unittest.cc', 1094 'common/manifest_handler_unittest.cc',
1099 'common/manifest_handlers/externally_connectable_unittest.cc', 1095 'common/manifest_handlers/externally_connectable_unittest.cc',
1100 'common/manifest_handlers/file_handler_manifest_unittest.cc', 1096 'common/manifest_handlers/file_handler_manifest_unittest.cc',
1101 'common/manifest_handlers/shared_module_manifest_unittest.cc', 1097 'common/manifest_handlers/shared_module_manifest_unittest.cc',
1102 'common/message_bundle_unittest.cc', 1098 'common/message_bundle_unittest.cc',
1103 'common/one_shot_event_unittest.cc', 1099 'common/one_shot_event_unittest.cc',
1104 'common/permissions/api_permission_set_unittest.cc', 1100 'common/permissions/api_permission_set_unittest.cc',
1105 'common/permissions/manifest_permission_set_unittest.cc', 1101 'common/permissions/manifest_permission_set_unittest.cc',
1106 'common/permissions/socket_permission_unittest.cc', 1102 'common/permissions/socket_permission_unittest.cc',
1107 'common/permissions/usb_device_permission_unittest.cc', 1103 'common/permissions/usb_device_permission_unittest.cc',
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
1146 'browser/api/cast_channel/logging.proto' 1142 'browser/api/cast_channel/logging.proto'
1147 ], 1143 ],
1148 'variables': { 1144 'variables': {
1149 'proto_in_dir': 'browser/api/cast_channel', 1145 'proto_in_dir': 'browser/api/cast_channel',
1150 'proto_out_dir': 'extensions/browser/api/cast_channel', 1146 'proto_out_dir': 'extensions/browser/api/cast_channel',
1151 }, 1147 },
1152 'includes': [ '../build/protoc.gypi' ] 1148 'includes': [ '../build/protoc.gypi' ]
1153 }, 1149 },
1154 ] 1150 ]
1155 } 1151 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698