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

Side by Side Diff: chrome/browser/extensions/BUILD.gn

Issue 2726223004: Introduce networking.cast API (Closed)
Patch Set: . Created 3 years, 9 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 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//chrome/common/features.gni") 7 import("//chrome/common/features.gni")
8 import("//extensions/features/features.gni") 8 import("//extensions/features/features.gni")
9 import("//media/media_options.gni") 9 import("//media/media_options.gni")
10 import("//rlz/features/features.gni") 10 import("//rlz/features/features.gni")
(...skipping 947 matching lines...) Expand 10 before | Expand all | Expand 10 after
958 "api/input_ime/input_ime_event_router_base.h", 958 "api/input_ime/input_ime_event_router_base.h",
959 "api/log_private/filter_handler.cc", 959 "api/log_private/filter_handler.cc",
960 "api/log_private/filter_handler.h", 960 "api/log_private/filter_handler.h",
961 "api/log_private/log_parser.cc", 961 "api/log_private/log_parser.cc",
962 "api/log_private/log_parser.h", 962 "api/log_private/log_parser.h",
963 "api/log_private/log_private_api.h", 963 "api/log_private/log_private_api.h",
964 "api/log_private/log_private_api_chromeos.cc", 964 "api/log_private/log_private_api_chromeos.cc",
965 "api/log_private/syslog_parser.cc", 965 "api/log_private/syslog_parser.cc",
966 "api/log_private/syslog_parser.h", 966 "api/log_private/syslog_parser.h",
967 "api/messaging/native_message_host_chromeos.cc", 967 "api/messaging/native_message_host_chromeos.cc",
968 "api/networking_cast/chrome_networking_cast_delegate.cc",
969 "api/networking_cast/chrome_networking_cast_delegate.h",
968 "api/networking_private/crypto_verify_impl.cc", 970 "api/networking_private/crypto_verify_impl.cc",
969 "api/networking_private/crypto_verify_impl.h", 971 "api/networking_private/crypto_verify_impl.h",
970 "api/platform_keys/platform_keys_api.cc", 972 "api/platform_keys/platform_keys_api.cc",
971 "api/platform_keys/platform_keys_api.h", 973 "api/platform_keys/platform_keys_api.h",
972 "api/platform_keys/verify_trust_api.cc", 974 "api/platform_keys/verify_trust_api.cc",
973 "api/platform_keys/verify_trust_api.h", 975 "api/platform_keys/verify_trust_api.h",
974 "api/terminal/terminal_extension_helper.cc", 976 "api/terminal/terminal_extension_helper.cc",
975 "api/terminal/terminal_extension_helper.h", 977 "api/terminal/terminal_extension_helper.h",
976 "api/terminal/terminal_private_api.cc", 978 "api/terminal/terminal_private_api.cc",
977 "api/terminal/terminal_private_api.h", 979 "api/terminal/terminal_private_api.h",
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
1062 1064
1063 if (!is_android) { 1065 if (!is_android) {
1064 sources += [ 1066 sources += [
1065 "api/processes/processes_api.cc", 1067 "api/processes/processes_api.cc",
1066 "api/processes/processes_api.h", 1068 "api/processes/processes_api.h",
1067 ] 1069 ]
1068 } 1070 }
1069 1071
1070 if (is_win || is_mac) { 1072 if (is_win || is_mac) {
1071 sources += [ 1073 sources += [
1074 "api/networking_cast/chrome_networking_cast_delegate.cc",
1075 "api/networking_cast/chrome_networking_cast_delegate.h",
1072 "api/networking_private/crypto_verify_impl.cc", 1076 "api/networking_private/crypto_verify_impl.cc",
1073 "api/networking_private/crypto_verify_impl.h", 1077 "api/networking_private/crypto_verify_impl.h",
1074 "api/networking_private/networking_private_credentials_getter.h", 1078 "api/networking_private/networking_private_credentials_getter.h",
1075 "api/networking_private/networking_private_credentials_getter_mac.cc", 1079 "api/networking_private/networking_private_credentials_getter_mac.cc",
1076 "api/networking_private/networking_private_credentials_getter_win.cc", 1080 "api/networking_private/networking_private_credentials_getter_win.cc",
1077 ] 1081 ]
1078 deps += [ "//components/wifi" ] 1082 deps += [ "//components/wifi" ]
1079 } 1083 }
1080 1084
1081 if (is_win || is_mac || is_chromeos) { 1085 if (is_win || is_mac || is_chromeos) {
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
1184 "api/braille_display_private/brlapi_connection.cc", 1188 "api/braille_display_private/brlapi_connection.cc",
1185 "api/braille_display_private/brlapi_connection.h", 1189 "api/braille_display_private/brlapi_connection.h",
1186 "api/braille_display_private/brlapi_keycode_map.cc", 1190 "api/braille_display_private/brlapi_keycode_map.cc",
1187 "api/braille_display_private/brlapi_keycode_map.h", 1191 "api/braille_display_private/brlapi_keycode_map.h",
1188 ] 1192 ]
1189 deps += [ "//build/linux/libbrlapi" ] 1193 deps += [ "//build/linux/libbrlapi" ]
1190 } else { 1194 } else {
1191 sources += [ "api/braille_display_private/braille_controller_stub.cc" ] 1195 sources += [ "api/braille_display_private/braille_controller_stub.cc" ]
1192 } 1196 }
1193 } 1197 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698