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

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

Issue 2294973002: Create MediaRouterActionController and MediaRouterUIService (Closed)
Patch Set: Address Derek and Mark's comments 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 3219 matching lines...) Expand 10 before | Expand all | Expand 10 after
3230 sources += [ 3230 sources += [
3231 # These are non-Android because Android excludes all of options. 3231 # These are non-Android because Android excludes all of options.
3232 "webui/options/geolocation_options_handler.cc", 3232 "webui/options/geolocation_options_handler.cc",
3233 "webui/options/geolocation_options_handler.h", 3233 "webui/options/geolocation_options_handler.h",
3234 ] 3234 ]
3235 } 3235 }
3236 if (enable_media_router && !is_android) { 3236 if (enable_media_router && !is_android) {
3237 sources += [ 3237 sources += [
3238 "toolbar/media_router_action.cc", 3238 "toolbar/media_router_action.cc",
3239 "toolbar/media_router_action.h", 3239 "toolbar/media_router_action.h",
3240 "toolbar/media_router_action_controller.cc",
3241 "toolbar/media_router_action_controller.h",
3240 "toolbar/media_router_action_platform_delegate.h", 3242 "toolbar/media_router_action_platform_delegate.h",
3241 "toolbar/media_router_contextual_menu.cc", 3243 "toolbar/media_router_contextual_menu.cc",
3242 "toolbar/media_router_contextual_menu.h", 3244 "toolbar/media_router_contextual_menu.h",
3243 "views/toolbar/media_router_action_platform_delegate_views.cc", 3245 "views/toolbar/media_router_action_platform_delegate_views.cc",
3244 "views/toolbar/media_router_action_platform_delegate_views.h", 3246 "views/toolbar/media_router_action_platform_delegate_views.h",
3245 "webui/media_router/media_cast_mode.cc", 3247 "webui/media_router/media_cast_mode.cc",
3246 "webui/media_router/media_cast_mode.h", 3248 "webui/media_router/media_cast_mode.h",
3247 "webui/media_router/media_router_dialog_controller_impl.cc", 3249 "webui/media_router/media_router_dialog_controller_impl.cc",
3248 "webui/media_router/media_router_dialog_controller_impl.h", 3250 "webui/media_router/media_router_dialog_controller_impl.h",
3249 "webui/media_router/media_router_localized_strings_provider.cc", 3251 "webui/media_router/media_router_localized_strings_provider.cc",
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
3366 "passwords/passwords_model_delegate_mock.cc", 3368 "passwords/passwords_model_delegate_mock.cc",
3367 "passwords/passwords_model_delegate_mock.h", 3369 "passwords/passwords_model_delegate_mock.h",
3368 ] 3370 ]
3369 deps += [ "//chrome/test:test_support_ui" ] 3371 deps += [ "//chrome/test:test_support_ui" ]
3370 } 3372 }
3371 3373
3372 if (enable_extensions) { 3374 if (enable_extensions) {
3373 deps += [ "//extensions/browser" ] 3375 deps += [ "//extensions/browser" ]
3374 } 3376 }
3375 } 3377 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698