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

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

Issue 2756483007: [Device Discovery] Move files from browser/extensions/api/dial to browser/media/router/discovery/di… (Closed)
Patch Set: create a seperate target for media/router/discovery 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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 "api/developer_private/developer_private_mangle.cc", 168 "api/developer_private/developer_private_mangle.cc",
169 "api/developer_private/developer_private_mangle.h", 169 "api/developer_private/developer_private_mangle.h",
170 "api/developer_private/entry_picker.cc", 170 "api/developer_private/entry_picker.cc",
171 "api/developer_private/entry_picker.h", 171 "api/developer_private/entry_picker.h",
172 "api/developer_private/extension_info_generator.cc", 172 "api/developer_private/extension_info_generator.cc",
173 "api/developer_private/extension_info_generator.h", 173 "api/developer_private/extension_info_generator.h",
174 "api/developer_private/inspectable_views_finder.cc", 174 "api/developer_private/inspectable_views_finder.cc",
175 "api/developer_private/inspectable_views_finder.h", 175 "api/developer_private/inspectable_views_finder.h",
176 "api/developer_private/show_permissions_dialog_helper.cc", 176 "api/developer_private/show_permissions_dialog_helper.cc",
177 "api/developer_private/show_permissions_dialog_helper.h", 177 "api/developer_private/show_permissions_dialog_helper.h",
178 "api/dial/device_description_fetcher.cc",
179 "api/dial/device_description_fetcher.h ",
180 "api/dial/dial_api.cc", 178 "api/dial/dial_api.cc",
181 "api/dial/dial_api.h", 179 "api/dial/dial_api.h",
182 "api/dial/dial_api_factory.cc", 180 "api/dial/dial_api_factory.cc",
183 "api/dial/dial_api_factory.h", 181 "api/dial/dial_api_factory.h",
184 "api/dial/dial_device_data.cc",
185 "api/dial/dial_device_data.h",
186 "api/dial/dial_registry.cc",
187 "api/dial/dial_registry.h",
188 "api/dial/dial_service.cc",
189 "api/dial/dial_service.h",
190 "api/downloads/downloads_api.cc", 182 "api/downloads/downloads_api.cc",
191 "api/downloads/downloads_api.h", 183 "api/downloads/downloads_api.h",
192 "api/downloads_internal/downloads_internal_api.cc", 184 "api/downloads_internal/downloads_internal_api.cc",
193 "api/downloads_internal/downloads_internal_api.h", 185 "api/downloads_internal/downloads_internal_api.h",
194 "api/easy_unlock_private/easy_unlock_private_api.cc", 186 "api/easy_unlock_private/easy_unlock_private_api.cc",
195 "api/easy_unlock_private/easy_unlock_private_api.h", 187 "api/easy_unlock_private/easy_unlock_private_api.h",
196 "api/easy_unlock_private/easy_unlock_private_connection.cc", 188 "api/easy_unlock_private/easy_unlock_private_connection.cc",
197 "api/easy_unlock_private/easy_unlock_private_connection.h", 189 "api/easy_unlock_private/easy_unlock_private_connection.h",
198 "api/easy_unlock_private/easy_unlock_private_connection_manager.cc", 190 "api/easy_unlock_private/easy_unlock_private_connection_manager.cc",
199 "api/easy_unlock_private/easy_unlock_private_connection_manager.h", 191 "api/easy_unlock_private/easy_unlock_private_connection_manager.h",
(...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after
922 "//ui/gfx", 914 "//ui/gfx",
923 "//ui/gfx/geometry", 915 "//ui/gfx/geometry",
924 "//ui/native_theme", 916 "//ui/native_theme",
925 "//ui/resources", 917 "//ui/resources",
926 "//ui/shell_dialogs", 918 "//ui/shell_dialogs",
927 "//ui/strings", 919 "//ui/strings",
928 "//ui/vector_icons", 920 "//ui/vector_icons",
929 "//url", 921 "//url",
930 ] 922 ]
931 923
924 if (!is_android) {
Devlin 2017/03/23 17:39:34 nit: none of the extensions module is ever compile
zhaobin 2017/03/23 18:06:02 Done.
zhaobin 2017/03/23 18:06:02 Created crbug.com/704617
925 deps += [ "//chrome/browser/media/router/discovery" ]
926 }
927
932 if (enable_media_router) { 928 if (enable_media_router) {
933 deps += [ "//chrome/browser/media/router" ] 929 deps += [ "//chrome/browser/media/router" ]
934 } 930 }
935 931
936 if (!is_chromeos) { 932 if (!is_chromeos) {
937 sources += [ "chrome_kiosk_delegate.cc" ] 933 sources += [ "chrome_kiosk_delegate.cc" ]
938 } 934 }
939 935
940 if (is_chromeos) { 936 if (is_chromeos) {
941 sources += [ 937 sources += [
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
1185 "api/braille_display_private/brlapi_connection.cc", 1181 "api/braille_display_private/brlapi_connection.cc",
1186 "api/braille_display_private/brlapi_connection.h", 1182 "api/braille_display_private/brlapi_connection.h",
1187 "api/braille_display_private/brlapi_keycode_map.cc", 1183 "api/braille_display_private/brlapi_keycode_map.cc",
1188 "api/braille_display_private/brlapi_keycode_map.h", 1184 "api/braille_display_private/brlapi_keycode_map.h",
1189 ] 1185 ]
1190 deps += [ "//build/linux/libbrlapi" ] 1186 deps += [ "//build/linux/libbrlapi" ]
1191 } else { 1187 } else {
1192 sources += [ "api/braille_display_private/braille_controller_stub.cc" ] 1188 sources += [ "api/braille_display_private/braille_controller_stub.cc" ]
1193 } 1189 }
1194 } 1190 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698