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

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

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

Powered by Google App Engine
This is Rietveld 408576698