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

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: Review comments Created 4 years, 11 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 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 815 matching lines...) Expand 10 before | Expand all | Expand 10 after
840 'browser/api/networking_private/networking_private_service_client.cc', 843 'browser/api/networking_private/networking_private_service_client.cc',
841 'browser/api/networking_private/networking_private_service_client.h', 844 'browser/api/networking_private/networking_private_service_client.h',
842 ], 845 ],
843 'extensions_browser_sources_linux_nonchromeos': [ 846 'extensions_browser_sources_linux_nonchromeos': [
844 'browser/api/networking_private/network_config_dbus_constants_linux.cc', 847 'browser/api/networking_private/network_config_dbus_constants_linux.cc',
845 'browser/api/networking_private/network_config_dbus_constants_linux.h', 848 'browser/api/networking_private/network_config_dbus_constants_linux.h',
846 'browser/api/networking_private/networking_private_event_router_nonchromeo s.cc', 849 'browser/api/networking_private/networking_private_event_router_nonchromeo s.cc',
847 'browser/api/networking_private/networking_private_linux.cc', 850 'browser/api/networking_private/networking_private_linux.cc',
848 'browser/api/networking_private/networking_private_linux.h', 851 'browser/api/networking_private/networking_private_linux.h',
849 ], 852 ],
853 'extensions_browser_sources_wifi_display': [
854 'browser/api/display_source/wifi_display/wifi_display_session_service_impl .cc',
855 'browser/api/display_source/wifi_display/wifi_display_session_service_impl .h',
856 ],
850 'extensions_renderer_sources': [ 857 'extensions_renderer_sources': [
851 'renderer/activity_log_converter_strategy.cc', 858 'renderer/activity_log_converter_strategy.cc',
852 'renderer/activity_log_converter_strategy.h', 859 'renderer/activity_log_converter_strategy.h',
853 'renderer/api/automation/automation_api_helper.cc', 860 'renderer/api/automation/automation_api_helper.cc',
854 'renderer/api/automation/automation_api_helper.h', 861 'renderer/api/automation/automation_api_helper.h',
855 'renderer/api/display_source/display_source_session.cc', 862 'renderer/api/display_source/display_source_session.cc',
856 'renderer/api/display_source/display_source_session.h', 863 'renderer/api/display_source/display_source_session.h',
857 'renderer/api_activity_logger.cc', 864 'renderer/api_activity_logger.cc',
858 'renderer/api_activity_logger.h', 865 'renderer/api_activity_logger.h',
859 'renderer/api_definitions_natives.cc', 866 'renderer/api_definitions_natives.cc',
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
1015 'renderer/v8_helpers.h', 1022 'renderer/v8_helpers.h',
1016 'renderer/v8_schema_registry.cc', 1023 'renderer/v8_schema_registry.cc',
1017 'renderer/v8_schema_registry.h', 1024 'renderer/v8_schema_registry.h',
1018 'renderer/wake_event_page.cc', 1025 'renderer/wake_event_page.cc',
1019 'renderer/wake_event_page.h', 1026 'renderer/wake_event_page.h',
1020 'renderer/web_ui_injection_host.cc', 1027 'renderer/web_ui_injection_host.cc',
1021 'renderer/web_ui_injection_host.h', 1028 'renderer/web_ui_injection_host.h',
1022 'renderer/worker_script_context_set.cc', 1029 'renderer/worker_script_context_set.cc',
1023 'renderer/worker_script_context_set.h', 1030 'renderer/worker_script_context_set.h',
1024 ], 1031 ],
1032 'extensions_render_sources_wifi_display': [
1033 'renderer/api/display_source/wifi_display/wifi_display_session.cc',
1034 'renderer/api/display_source/wifi_display/wifi_display_session.h',
1035 ],
1025 'extensions_utility_sources': [ 1036 'extensions_utility_sources': [
1026 'utility/unpacker.cc', 1037 'utility/unpacker.cc',
1027 'utility/unpacker.h', 1038 'utility/unpacker.h',
1028 'utility/utility_handler.cc', 1039 'utility/utility_handler.cc',
1029 'utility/utility_handler.h', 1040 'utility/utility_handler.h',
1030 ], 1041 ],
1031 'extensions_test_support_sources': [ 1042 'extensions_test_support_sources': [
1032 'browser/api/cast_channel/cast_test_util.cc', 1043 'browser/api/cast_channel/cast_test_util.cc',
1033 'browser/api/cast_channel/cast_test_util.h', 1044 'browser/api/cast_channel/cast_test_util.h',
1034 'browser/api/dns/mock_host_resolver_creator.cc', 1045 'browser/api/dns/mock_host_resolver_creator.cc',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
1077 'test/result_catcher.h', 1088 'test/result_catcher.h',
1078 'test/test_content_utility_client.cc', 1089 'test/test_content_utility_client.cc',
1079 'test/test_content_utility_client.h', 1090 'test/test_content_utility_client.h',
1080 'test/test_extensions_client.cc', 1091 'test/test_extensions_client.cc',
1081 'test/test_extensions_client.h', 1092 'test/test_extensions_client.h',
1082 'test/test_permission_message_provider.cc', 1093 'test/test_permission_message_provider.cc',
1083 'test/test_permission_message_provider.h', 1094 'test/test_permission_message_provider.h',
1084 ], 1095 ],
1085 }, 1096 },
1086 } 1097 }
OLDNEW
« no previous file with comments | « extensions/extensions.gyp ('k') | extensions/renderer/api/display_source/display_source_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698