| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//content/browser/browser.gni") | 7 import("//content/browser/browser.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 | 9 |
| 10 source_set("browser") { | 10 source_set("browser") { |
| (...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 412 "//chromeos", | 412 "//chromeos", |
| 413 "//chromeos:power_manager_proto", | 413 "//chromeos:power_manager_proto", |
| 414 ] | 414 ] |
| 415 } | 415 } |
| 416 | 416 |
| 417 if (use_aura) { | 417 if (use_aura) { |
| 418 deps += [ | 418 deps += [ |
| 419 "//ui/aura", | 419 "//ui/aura", |
| 420 "//ui/aura_extra", | 420 "//ui/aura_extra", |
| 421 "//ui/strings", | 421 "//ui/strings", |
| 422 "//ui/views/mus:for_component", | |
| 423 "//ui/wm", | 422 "//ui/wm", |
| 424 ] | 423 ] |
| 424 if (toolkit_views) { |
| 425 deps += [ |
| 426 "//ui/views/mus:for_component", |
| 427 ] |
| 428 } |
| 425 } else { # Not aura. | 429 } else { # Not aura. |
| 426 sources -= [ | 430 sources -= [ |
| 427 "media/capture/cursor_renderer_aura.cc", | 431 "media/capture/cursor_renderer_aura.cc", |
| 428 "media/capture/cursor_renderer_aura.h", | 432 "media/capture/cursor_renderer_aura.h", |
| 429 "renderer_host/compositor_resize_lock_aura.cc", | 433 "renderer_host/compositor_resize_lock_aura.cc", |
| 430 "renderer_host/compositor_resize_lock_aura.h", | 434 "renderer_host/compositor_resize_lock_aura.h", |
| 431 "renderer_host/input/synthetic_gesture_target_aura.cc", | 435 "renderer_host/input/synthetic_gesture_target_aura.cc", |
| 432 "renderer_host/input/synthetic_gesture_target_aura.h", | 436 "renderer_host/input/synthetic_gesture_target_aura.h", |
| 433 "renderer_host/input/touch_selection_controller_client_aura.cc", | 437 "renderer_host/input/touch_selection_controller_client_aura.cc", |
| 434 "renderer_host/input/touch_selection_controller_client_aura.h", | 438 "renderer_host/input/touch_selection_controller_client_aura.h", |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 525 | 529 |
| 526 if (enable_webvr && is_android) { | 530 if (enable_webvr && is_android) { |
| 527 sources += [ | 531 sources += [ |
| 528 "vr/android/cardboard/cardboard_vr_device.cc", | 532 "vr/android/cardboard/cardboard_vr_device.cc", |
| 529 "vr/android/cardboard/cardboard_vr_device.h", | 533 "vr/android/cardboard/cardboard_vr_device.h", |
| 530 "vr/android/cardboard/cardboard_vr_device_provider.cc", | 534 "vr/android/cardboard/cardboard_vr_device_provider.cc", |
| 531 "vr/android/cardboard/cardboard_vr_device_provider.h", | 535 "vr/android/cardboard/cardboard_vr_device_provider.h", |
| 532 ] | 536 ] |
| 533 } | 537 } |
| 534 } | 538 } |
| OLD | NEW |