| 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/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("//content/browser/browser.gni") | 8 import("//content/browser/browser.gni") |
| 9 import("//media/media_options.gni") | 9 import("//media/media_options.gni") |
| 10 | 10 |
| (...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 399 | 399 |
| 400 if (use_aura) { | 400 if (use_aura) { |
| 401 deps += [ | 401 deps += [ |
| 402 "//ui/aura", | 402 "//ui/aura", |
| 403 "//ui/aura_extra", | 403 "//ui/aura_extra", |
| 404 "//ui/strings", | 404 "//ui/strings", |
| 405 "//ui/wm", | 405 "//ui/wm", |
| 406 ] | 406 ] |
| 407 } else { # Not aura. | 407 } else { # Not aura. |
| 408 sources -= [ | 408 sources -= [ |
| 409 "media/capture/cursor_renderer_aura.cc", |
| 410 "media/capture/cursor_renderer_aura.h", |
| 409 "renderer_host/compositor_resize_lock_aura.cc", | 411 "renderer_host/compositor_resize_lock_aura.cc", |
| 410 "renderer_host/compositor_resize_lock_aura.h", | 412 "renderer_host/compositor_resize_lock_aura.h", |
| 411 "renderer_host/input/synthetic_gesture_target_aura.cc", | 413 "renderer_host/input/synthetic_gesture_target_aura.cc", |
| 412 "renderer_host/input/synthetic_gesture_target_aura.h", | 414 "renderer_host/input/synthetic_gesture_target_aura.h", |
| 413 "renderer_host/input/touch_selection_controller_client_aura.cc", | 415 "renderer_host/input/touch_selection_controller_client_aura.cc", |
| 414 "renderer_host/input/touch_selection_controller_client_aura.h", | 416 "renderer_host/input/touch_selection_controller_client_aura.h", |
| 415 "renderer_host/native_web_keyboard_event_aura.cc", | 417 "renderer_host/native_web_keyboard_event_aura.cc", |
| 416 "renderer_host/render_widget_host_view_aura.cc", | 418 "renderer_host/render_widget_host_view_aura.cc", |
| 417 "renderer_host/render_widget_host_view_aura.h", | 419 "renderer_host/render_widget_host_view_aura.h", |
| 418 "renderer_host/ui_events_helper.cc", | 420 "renderer_host/ui_events_helper.cc", |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 505 | 507 |
| 506 if (enable_webvr && is_android) { | 508 if (enable_webvr && is_android) { |
| 507 sources += [ | 509 sources += [ |
| 508 "vr/android/cardboard/cardboard_vr_device.cc", | 510 "vr/android/cardboard/cardboard_vr_device.cc", |
| 509 "vr/android/cardboard/cardboard_vr_device.h", | 511 "vr/android/cardboard/cardboard_vr_device.h", |
| 510 "vr/android/cardboard/cardboard_vr_device_provider.cc", | 512 "vr/android/cardboard/cardboard_vr_device_provider.cc", |
| 511 "vr/android/cardboard/cardboard_vr_device_provider.h", | 513 "vr/android/cardboard/cardboard_vr_device_provider.h", |
| 512 ] | 514 ] |
| 513 } | 515 } |
| 514 } | 516 } |
| OLD | NEW |