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

Side by Side Diff: extensions/extensions.gypi

Issue 1540563002: [chrome.displaySource] Add WiFi Display session class skeleton and mojo service (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 'extensions_common_constants_sources': [ 7 'extensions_common_constants_sources': [
8 'common/constants.cc', 8 'common/constants.cc',
9 'common/constants.h', 9 'common/constants.h',
10 ], 10 ],
11 'extensions_common_mojo_sources': [ 11 'extensions_common_mojo_sources': [
12 'common/mojo/keep_alive.mojom', 12 'common/mojo/keep_alive.mojom',
13 'common/mojo/stash.mojom', 13 'common/mojo/stash.mojom',
14 ], 14 ],
15 'extensions_common_mojo_sources_wifi_display': [
16 'common/mojo/wifi_display_session_service.mojom',
17 ],
15 'extensions_common_sources': [ 18 'extensions_common_sources': [
16 'common/api/bluetooth/bluetooth_manifest_data.cc', 19 'common/api/bluetooth/bluetooth_manifest_data.cc',
17 'common/api/bluetooth/bluetooth_manifest_data.h', 20 'common/api/bluetooth/bluetooth_manifest_data.h',
18 'common/api/bluetooth/bluetooth_manifest_handler.cc', 21 'common/api/bluetooth/bluetooth_manifest_handler.cc',
19 'common/api/bluetooth/bluetooth_manifest_handler.h', 22 'common/api/bluetooth/bluetooth_manifest_handler.h',
20 'common/api/bluetooth/bluetooth_manifest_permission.cc', 23 'common/api/bluetooth/bluetooth_manifest_permission.cc',
21 'common/api/bluetooth/bluetooth_manifest_permission.h', 24 'common/api/bluetooth/bluetooth_manifest_permission.h',
22 'common/api/declarative/declarative_manifest_data.cc', 25 'common/api/declarative/declarative_manifest_data.cc',
23 'common/api/declarative/declarative_manifest_data.h', 26 'common/api/declarative/declarative_manifest_data.h',
24 'common/api/declarative/declarative_manifest_handler.cc', 27 'common/api/declarative/declarative_manifest_handler.cc',
(...skipping 813 matching lines...) Expand 10 before | Expand all | Expand 10 after
838 'browser/api/networking_private/networking_private_service_client.cc', 841 'browser/api/networking_private/networking_private_service_client.cc',
839 'browser/api/networking_private/networking_private_service_client.h', 842 'browser/api/networking_private/networking_private_service_client.h',
840 ], 843 ],
841 'extensions_browser_sources_linux_nonchromeos': [ 844 'extensions_browser_sources_linux_nonchromeos': [
842 'browser/api/networking_private/network_config_dbus_constants_linux.cc', 845 'browser/api/networking_private/network_config_dbus_constants_linux.cc',
843 'browser/api/networking_private/network_config_dbus_constants_linux.h', 846 'browser/api/networking_private/network_config_dbus_constants_linux.h',
844 'browser/api/networking_private/networking_private_event_router_nonchromeo s.cc', 847 'browser/api/networking_private/networking_private_event_router_nonchromeo s.cc',
845 'browser/api/networking_private/networking_private_linux.cc', 848 'browser/api/networking_private/networking_private_linux.cc',
846 'browser/api/networking_private/networking_private_linux.h', 849 'browser/api/networking_private/networking_private_linux.h',
847 ], 850 ],
851 'extensions_browser_sources_wifi_display': [
852 'browser/api/display_source/wifi_display/wifi_display_session_service_impl .cc',
853 'browser/api/display_source/wifi_display/wifi_display_session_service_impl .h',
854 ],
848 'extensions_renderer_sources': [ 855 'extensions_renderer_sources': [
849 'renderer/activity_log_converter_strategy.cc', 856 'renderer/activity_log_converter_strategy.cc',
850 'renderer/activity_log_converter_strategy.h', 857 'renderer/activity_log_converter_strategy.h',
851 'renderer/api/automation/automation_api_helper.cc', 858 'renderer/api/automation/automation_api_helper.cc',
852 'renderer/api/automation/automation_api_helper.h', 859 'renderer/api/automation/automation_api_helper.h',
853 'renderer/api/display_source/display_source_session.cc', 860 'renderer/api/display_source/display_source_session.cc',
854 'renderer/api/display_source/display_source_session.h', 861 'renderer/api/display_source/display_source_session.h',
855 'renderer/api_activity_logger.cc', 862 'renderer/api_activity_logger.cc',
856 'renderer/api_activity_logger.h', 863 'renderer/api_activity_logger.h',
857 'renderer/api_definitions_natives.cc', 864 'renderer/api_definitions_natives.cc',
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
1013 'renderer/v8_helpers.h', 1020 'renderer/v8_helpers.h',
1014 'renderer/v8_schema_registry.cc', 1021 'renderer/v8_schema_registry.cc',
1015 'renderer/v8_schema_registry.h', 1022 'renderer/v8_schema_registry.h',
1016 'renderer/wake_event_page.cc', 1023 'renderer/wake_event_page.cc',
1017 'renderer/wake_event_page.h', 1024 'renderer/wake_event_page.h',
1018 'renderer/web_ui_injection_host.cc', 1025 'renderer/web_ui_injection_host.cc',
1019 'renderer/web_ui_injection_host.h', 1026 'renderer/web_ui_injection_host.h',
1020 'renderer/worker_script_context_set.cc', 1027 'renderer/worker_script_context_set.cc',
1021 'renderer/worker_script_context_set.h', 1028 'renderer/worker_script_context_set.h',
1022 ], 1029 ],
1030 'extensions_render_sources_wifi_display': [
1031 'renderer/api/display_source/wifi_display/wifi_display_session.cc',
1032 'renderer/api/display_source/wifi_display/wifi_display_session.h',
1033 ],
1023 'extensions_utility_sources': [ 1034 'extensions_utility_sources': [
1024 'utility/unpacker.cc', 1035 'utility/unpacker.cc',
1025 'utility/unpacker.h', 1036 'utility/unpacker.h',
1026 'utility/utility_handler.cc', 1037 'utility/utility_handler.cc',
1027 'utility/utility_handler.h', 1038 'utility/utility_handler.h',
1028 ], 1039 ],
1029 'extensions_test_support_sources': [ 1040 'extensions_test_support_sources': [
1030 'browser/api/cast_channel/cast_test_util.cc', 1041 'browser/api/cast_channel/cast_test_util.cc',
1031 'browser/api/cast_channel/cast_test_util.h', 1042 'browser/api/cast_channel/cast_test_util.h',
1032 'browser/api/dns/mock_host_resolver_creator.cc', 1043 'browser/api/dns/mock_host_resolver_creator.cc',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
1075 'test/result_catcher.h', 1086 'test/result_catcher.h',
1076 'test/test_content_utility_client.cc', 1087 'test/test_content_utility_client.cc',
1077 'test/test_content_utility_client.h', 1088 'test/test_content_utility_client.h',
1078 'test/test_extensions_client.cc', 1089 'test/test_extensions_client.cc',
1079 'test/test_extensions_client.h', 1090 'test/test_extensions_client.h',
1080 'test/test_permission_message_provider.cc', 1091 'test/test_permission_message_provider.cc',
1081 'test/test_permission_message_provider.h', 1092 'test/test_permission_message_provider.h',
1082 ], 1093 ],
1083 }, 1094 },
1084 } 1095 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698