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

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

Powered by Google App Engine
This is Rietveld 408576698