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

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

Issue 2294973002: Create MediaRouterActionController and MediaRouterUIService (Closed)
Patch Set: Add MediaRouterUIService (KeyedService) Created 4 years, 3 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/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/split_static_library.gni") 8 import("//build/split_static_library.gni")
9 import("//chrome/common/features.gni") 9 import("//chrome/common/features.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 3212 matching lines...) Expand 10 before | Expand all | Expand 10 after
3223 sources += [ 3223 sources += [
3224 # These are non-Android because Android excludes all of options. 3224 # These are non-Android because Android excludes all of options.
3225 "webui/options/geolocation_options_handler.cc", 3225 "webui/options/geolocation_options_handler.cc",
3226 "webui/options/geolocation_options_handler.h", 3226 "webui/options/geolocation_options_handler.h",
3227 ] 3227 ]
3228 } 3228 }
3229 if (enable_media_router && !is_android) { 3229 if (enable_media_router && !is_android) {
3230 sources += [ 3230 sources += [
3231 "toolbar/media_router_action.cc", 3231 "toolbar/media_router_action.cc",
3232 "toolbar/media_router_action.h", 3232 "toolbar/media_router_action.h",
3233 "toolbar/media_router_action_controller.cc",
3234 "toolbar/media_router_action_controller.h",
3233 "toolbar/media_router_action_platform_delegate.h", 3235 "toolbar/media_router_action_platform_delegate.h",
3234 "toolbar/media_router_contextual_menu.cc", 3236 "toolbar/media_router_contextual_menu.cc",
3235 "toolbar/media_router_contextual_menu.h", 3237 "toolbar/media_router_contextual_menu.h",
3236 "views/toolbar/media_router_action_platform_delegate_views.cc", 3238 "views/toolbar/media_router_action_platform_delegate_views.cc",
3237 "views/toolbar/media_router_action_platform_delegate_views.h", 3239 "views/toolbar/media_router_action_platform_delegate_views.h",
3238 "webui/media_router/media_cast_mode.cc", 3240 "webui/media_router/media_cast_mode.cc",
3239 "webui/media_router/media_cast_mode.h", 3241 "webui/media_router/media_cast_mode.h",
3240 "webui/media_router/media_router_dialog_controller_impl.cc", 3242 "webui/media_router/media_router_dialog_controller_impl.cc",
3241 "webui/media_router/media_router_dialog_controller_impl.h", 3243 "webui/media_router/media_router_dialog_controller_impl.h",
3242 "webui/media_router/media_router_localized_strings_provider.cc", 3244 "webui/media_router/media_router_localized_strings_provider.cc",
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
3359 "passwords/passwords_model_delegate_mock.cc", 3361 "passwords/passwords_model_delegate_mock.cc",
3360 "passwords/passwords_model_delegate_mock.h", 3362 "passwords/passwords_model_delegate_mock.h",
3361 ] 3363 ]
3362 deps += [ "//chrome/test:test_support_ui" ] 3364 deps += [ "//chrome/test:test_support_ui" ]
3363 } 3365 }
3364 3366
3365 if (enable_extensions) { 3367 if (enable_extensions) {
3366 deps += [ "//extensions/browser" ] 3368 deps += [ "//extensions/browser" ]
3367 } 3369 }
3368 } 3370 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698