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

Side by Side Diff: content/test/BUILD.gn

Issue 2387263002: Rename MojoShellContext -> ServiceManagerContext. (Closed)
Patch Set: . Created 4 years, 2 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
« no previous file with comments | « content/shell/utility/shell_content_utility_client.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/compiler/compiler.gni") 6 import("//build/config/compiler/compiler.gni")
7 import("//build/config/crypto.gni") 7 import("//build/config/crypto.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//mojo/public/tools/bindings/mojom.gni") 10 import("//mojo/public/tools/bindings/mojom.gni")
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 "../public/test/test_file_error_injector.cc", 85 "../public/test/test_file_error_injector.cc",
86 "../public/test/test_file_error_injector.h", 86 "../public/test/test_file_error_injector.h",
87 "../public/test/test_file_system_backend.cc", 87 "../public/test/test_file_system_backend.cc",
88 "../public/test/test_file_system_backend.h", 88 "../public/test/test_file_system_backend.h",
89 "../public/test/test_file_system_context.cc", 89 "../public/test/test_file_system_context.cc",
90 "../public/test/test_file_system_context.h", 90 "../public/test/test_file_system_context.h",
91 "../public/test/test_file_system_options.cc", 91 "../public/test/test_file_system_options.cc",
92 "../public/test/test_file_system_options.h", 92 "../public/test/test_file_system_options.h",
93 "../public/test/test_launcher.cc", 93 "../public/test/test_launcher.cc",
94 "../public/test/test_launcher.h", 94 "../public/test/test_launcher.h",
95 "../public/test/test_mojo_app.cc",
96 "../public/test/test_mojo_app.h",
97 "../public/test/test_mojo_shell_context.cc",
98 "../public/test/test_mojo_shell_context.h",
99 "../public/test/test_navigation_observer.cc", 95 "../public/test/test_navigation_observer.cc",
100 "../public/test/test_navigation_observer.h", 96 "../public/test/test_navigation_observer.h",
101 "../public/test/test_notification_tracker.cc", 97 "../public/test/test_notification_tracker.cc",
102 "../public/test/test_notification_tracker.h", 98 "../public/test/test_notification_tracker.h",
103 "../public/test/test_renderer_host.cc", 99 "../public/test/test_renderer_host.cc",
104 "../public/test/test_renderer_host.h", 100 "../public/test/test_renderer_host.h",
101 "../public/test/test_service.cc",
102 "../public/test/test_service.h",
103 "../public/test/test_service_manager_context.cc",
104 "../public/test/test_service_manager_context.h",
105 "../public/test/test_synchronous_compositor_android.cc", 105 "../public/test/test_synchronous_compositor_android.cc",
106 "../public/test/test_synchronous_compositor_android.h", 106 "../public/test/test_synchronous_compositor_android.h",
107 "../public/test/test_utils.cc", 107 "../public/test/test_utils.cc",
108 "../public/test/test_utils.h", 108 "../public/test/test_utils.h",
109 "../public/test/test_web_contents_factory.h", 109 "../public/test/test_web_contents_factory.h",
110 "../public/test/test_web_ui.cc", 110 "../public/test/test_web_ui.cc",
111 "../public/test/test_web_ui.h", 111 "../public/test/test_web_ui.h",
112 "../public/test/text_input_test_utils.cc", 112 "../public/test/text_input_test_utils.cc",
113 "../public/test/text_input_test_utils.h", 113 "../public/test/text_input_test_utils.h",
114 "../public/test/unittest_test_suite.cc", 114 "../public/test/unittest_test_suite.cc",
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 deps += [ "//content/public/app:both" ] 415 deps += [ "//content/public/app:both" ]
416 } else { 416 } else {
417 deps += [ "//content/public/browser" ] 417 deps += [ "//content/public/browser" ]
418 } 418 }
419 419
420 configs += [ "//v8:external_startup_data" ] 420 configs += [ "//v8:external_startup_data" ]
421 } 421 }
422 422
423 mojom("content_test_mojo_bindings") { 423 mojom("content_test_mojo_bindings") {
424 sources = [ 424 sources = [
425 "../public/test/test_mojo_service.mojom", 425 "../public/test/test_service.mojom",
426 "test_browser_associated_interfaces.mojom", 426 "test_browser_associated_interfaces.mojom",
427 ] 427 ]
428 } 428 }
429 429
430 mojom("web_ui_test_mojo_bindings") { 430 mojom("web_ui_test_mojo_bindings") {
431 sources = [ 431 sources = [
432 "data/web_ui_test_mojo_bindings.mojom", 432 "data/web_ui_test_mojo_bindings.mojom",
433 ] 433 ]
434 } 434 }
435 435
(...skipping 678 matching lines...) Expand 10 before | Expand all | Expand 10 after
1114 "../browser/media/media_internals_unittest.cc", 1114 "../browser/media/media_internals_unittest.cc",
1115 "../browser/media/midi_host_unittest.cc", 1115 "../browser/media/midi_host_unittest.cc",
1116 "../browser/media/session/audio_focus_manager_unittest.cc", 1116 "../browser/media/session/audio_focus_manager_unittest.cc",
1117 "../browser/media/session/media_session_controller_unittest.cc", 1117 "../browser/media/session/media_session_controller_unittest.cc",
1118 "../browser/media/session/media_session_uma_helper_unittest.cc", 1118 "../browser/media/session/media_session_uma_helper_unittest.cc",
1119 "../browser/memory/memory_coordinator_unittest.cc", 1119 "../browser/memory/memory_coordinator_unittest.cc",
1120 "../browser/memory/memory_monitor_android_unittest.cc", 1120 "../browser/memory/memory_monitor_android_unittest.cc",
1121 "../browser/memory/memory_monitor_win_unittest.cc", 1121 "../browser/memory/memory_monitor_win_unittest.cc",
1122 "../browser/memory/test_memory_monitor.cc", 1122 "../browser/memory/test_memory_monitor.cc",
1123 "../browser/memory/test_memory_monitor.h", 1123 "../browser/memory/test_memory_monitor.h",
1124 "../browser/mojo/merge_dictionary_unittest.cc",
1125 "../browser/net/quota_policy_cookie_store_unittest.cc", 1124 "../browser/net/quota_policy_cookie_store_unittest.cc",
1126 "../browser/notification_service_impl_unittest.cc", 1125 "../browser/notification_service_impl_unittest.cc",
1127 "../browser/notifications/notification_database_data_unittest.cc", 1126 "../browser/notifications/notification_database_data_unittest.cc",
1128 "../browser/notifications/notification_database_unittest.cc", 1127 "../browser/notifications/notification_database_unittest.cc",
1129 "../browser/notifications/notification_id_generator_unittest.cc", 1128 "../browser/notifications/notification_id_generator_unittest.cc",
1130 "../browser/notifications/platform_notification_context_unittest.cc", 1129 "../browser/notifications/platform_notification_context_unittest.cc",
1131 "../browser/notifications/type_converters_unittest.cc", 1130 "../browser/notifications/type_converters_unittest.cc",
1132 "../browser/power_monitor_message_broadcaster_unittest.cc", 1131 "../browser/power_monitor_message_broadcaster_unittest.cc",
1133 "../browser/power_usage_monitor_impl_unittest.cc", 1132 "../browser/power_usage_monitor_impl_unittest.cc",
1134 "../browser/presentation/presentation_service_impl_unittest.cc", 1133 "../browser/presentation/presentation_service_impl_unittest.cc",
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
1182 "../browser/renderer_host/media/video_capture_manager_unittest.cc", 1181 "../browser/renderer_host/media/video_capture_manager_unittest.cc",
1183 "../browser/renderer_host/render_process_host_unittest.cc", 1182 "../browser/renderer_host/render_process_host_unittest.cc",
1184 "../browser/renderer_host/render_view_host_unittest.cc", 1183 "../browser/renderer_host/render_view_host_unittest.cc",
1185 "../browser/renderer_host/render_widget_host_unittest.cc", 1184 "../browser/renderer_host/render_widget_host_unittest.cc",
1186 "../browser/renderer_host/render_widget_host_view_aura_unittest.cc", 1185 "../browser/renderer_host/render_widget_host_view_aura_unittest.cc",
1187 "../browser/renderer_host/render_widget_host_view_base_unittest.cc", 1186 "../browser/renderer_host/render_widget_host_view_base_unittest.cc",
1188 "../browser/renderer_host/render_widget_host_view_mac_editcommand_helper_uni ttest.mm", 1187 "../browser/renderer_host/render_widget_host_view_mac_editcommand_helper_uni ttest.mm",
1189 "../browser/renderer_host/render_widget_host_view_mac_unittest.mm", 1188 "../browser/renderer_host/render_widget_host_view_mac_unittest.mm",
1190 "../browser/renderer_host/text_input_client_mac_unittest.mm", 1189 "../browser/renderer_host/text_input_client_mac_unittest.mm",
1191 "../browser/resolve_proxy_msg_helper_unittest.cc", 1190 "../browser/resolve_proxy_msg_helper_unittest.cc",
1191 "../browser/service_manager/merge_dictionary_unittest.cc",
1192 "../browser/service_worker/embedded_worker_instance_unittest.cc", 1192 "../browser/service_worker/embedded_worker_instance_unittest.cc",
1193 "../browser/service_worker/link_header_support_unittest.cc", 1193 "../browser/service_worker/link_header_support_unittest.cc",
1194 "../browser/service_worker/service_worker_cache_writer_unittest.cc", 1194 "../browser/service_worker/service_worker_cache_writer_unittest.cc",
1195 "../browser/service_worker/service_worker_context_core_unittest.cc", 1195 "../browser/service_worker/service_worker_context_core_unittest.cc",
1196 "../browser/service_worker/service_worker_context_request_handler_unittest.c c", 1196 "../browser/service_worker/service_worker_context_request_handler_unittest.c c",
1197 "../browser/service_worker/service_worker_context_unittest.cc", 1197 "../browser/service_worker/service_worker_context_unittest.cc",
1198 "../browser/service_worker/service_worker_controllee_request_handler_unittes t.cc", 1198 "../browser/service_worker/service_worker_controllee_request_handler_unittes t.cc",
1199 "../browser/service_worker/service_worker_database_unittest.cc", 1199 "../browser/service_worker/service_worker_database_unittest.cc",
1200 "../browser/service_worker/service_worker_dispatcher_host_unittest.cc", 1200 "../browser/service_worker/service_worker_dispatcher_host_unittest.cc",
1201 "../browser/service_worker/service_worker_handle_unittest.cc", 1201 "../browser/service_worker/service_worker_handle_unittest.cc",
(...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after
1701 if (is_android) { 1701 if (is_android) {
1702 deps += [ "//testing/android/native_test:native_test_native_code" ] 1702 deps += [ "//testing/android/native_test:native_test_native_code" ]
1703 } 1703 }
1704 } 1704 }
1705 1705
1706 group("fuzzers") { 1706 group("fuzzers") {
1707 deps = [ 1707 deps = [
1708 "//content/test/fuzzer", 1708 "//content/test/fuzzer",
1709 ] 1709 ]
1710 } 1710 }
OLDNEW
« no previous file with comments | « content/shell/utility/shell_content_utility_client.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698