OLD | NEW |
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/chromecast_build.gni") | 5 import("//build/config/chromecast_build.gni") |
6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
9 import("//build/split_static_library.gni") | 9 import("//build/split_static_library.gni") |
10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
(...skipping 3369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3380 "webui/extensions/extension_icon_source.h", | 3380 "webui/extensions/extension_icon_source.h", |
3381 ] | 3381 ] |
3382 } | 3382 } |
3383 if (enable_google_now && !is_android) { | 3383 if (enable_google_now && !is_android) { |
3384 sources += [ | 3384 sources += [ |
3385 # These are non-Android because Android excludes all of options. | 3385 # These are non-Android because Android excludes all of options. |
3386 "webui/options/geolocation_options_handler.cc", | 3386 "webui/options/geolocation_options_handler.cc", |
3387 "webui/options/geolocation_options_handler.h", | 3387 "webui/options/geolocation_options_handler.h", |
3388 ] | 3388 ] |
3389 } | 3389 } |
3390 if (enable_media_router && !is_android) { | 3390 if (!is_android) { |
3391 sources += [ | 3391 sources += [ |
3392 "toolbar/media_router_action.cc", | 3392 "toolbar/media_router_action.cc", |
3393 "toolbar/media_router_action.h", | 3393 "toolbar/media_router_action.h", |
3394 "toolbar/media_router_action_controller.cc", | 3394 "toolbar/media_router_action_controller.cc", |
3395 "toolbar/media_router_action_controller.h", | 3395 "toolbar/media_router_action_controller.h", |
3396 "toolbar/media_router_action_platform_delegate.h", | 3396 "toolbar/media_router_action_platform_delegate.h", |
3397 "toolbar/media_router_contextual_menu.cc", | 3397 "toolbar/media_router_contextual_menu.cc", |
3398 "toolbar/media_router_contextual_menu.h", | 3398 "toolbar/media_router_contextual_menu.h", |
3399 "views/toolbar/media_router_action_platform_delegate_views.cc", | 3399 "views/toolbar/media_router_action_platform_delegate_views.cc", |
3400 "views/toolbar/media_router_action_platform_delegate_views.h", | 3400 "views/toolbar/media_router_action_platform_delegate_views.h", |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3531 "test/test_confirm_bubble_model.cc", | 3531 "test/test_confirm_bubble_model.cc", |
3532 "test/test_confirm_bubble_model.h", | 3532 "test/test_confirm_bubble_model.h", |
3533 ] | 3533 ] |
3534 deps += [ "//chrome/test:test_support_ui" ] | 3534 deps += [ "//chrome/test:test_support_ui" ] |
3535 } | 3535 } |
3536 | 3536 |
3537 if (enable_extensions) { | 3537 if (enable_extensions) { |
3538 deps += [ "//extensions/browser" ] | 3538 deps += [ "//extensions/browser" ] |
3539 } | 3539 } |
3540 } | 3540 } |
OLD | NEW |