| 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 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 | 406 |
| 407 if (use_aura) { | 407 if (use_aura) { |
| 408 deps += [ | 408 deps += [ |
| 409 "//ui/aura", | 409 "//ui/aura", |
| 410 "//ui/aura_extra", | 410 "//ui/aura_extra", |
| 411 "//ui/strings", | 411 "//ui/strings", |
| 412 "//ui/wm", | 412 "//ui/wm", |
| 413 ] | 413 ] |
| 414 } else { # Not aura. | 414 } else { # Not aura. |
| 415 sources -= [ | 415 sources -= [ |
| 416 "media/capture/cursor_renderer_aura.cc", |
| 417 "media/capture/cursor_renderer_aura.h", |
| 416 "renderer_host/compositor_resize_lock_aura.cc", | 418 "renderer_host/compositor_resize_lock_aura.cc", |
| 417 "renderer_host/compositor_resize_lock_aura.h", | 419 "renderer_host/compositor_resize_lock_aura.h", |
| 418 "renderer_host/input/synthetic_gesture_target_aura.cc", | 420 "renderer_host/input/synthetic_gesture_target_aura.cc", |
| 419 "renderer_host/input/synthetic_gesture_target_aura.h", | 421 "renderer_host/input/synthetic_gesture_target_aura.h", |
| 420 "renderer_host/input/touch_selection_controller_client_aura.cc", | 422 "renderer_host/input/touch_selection_controller_client_aura.cc", |
| 421 "renderer_host/input/touch_selection_controller_client_aura.h", | 423 "renderer_host/input/touch_selection_controller_client_aura.h", |
| 422 "renderer_host/native_web_keyboard_event_aura.cc", | 424 "renderer_host/native_web_keyboard_event_aura.cc", |
| 423 "renderer_host/render_widget_host_view_aura.cc", | 425 "renderer_host/render_widget_host_view_aura.cc", |
| 424 "renderer_host/render_widget_host_view_aura.h", | 426 "renderer_host/render_widget_host_view_aura.h", |
| 425 "renderer_host/ui_events_helper.cc", | 427 "renderer_host/ui_events_helper.cc", |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 512 | 514 |
| 513 if (enable_webvr && is_android) { | 515 if (enable_webvr && is_android) { |
| 514 sources += [ | 516 sources += [ |
| 515 "vr/android/cardboard/cardboard_vr_device.cc", | 517 "vr/android/cardboard/cardboard_vr_device.cc", |
| 516 "vr/android/cardboard/cardboard_vr_device.h", | 518 "vr/android/cardboard/cardboard_vr_device.h", |
| 517 "vr/android/cardboard/cardboard_vr_device_provider.cc", | 519 "vr/android/cardboard/cardboard_vr_device_provider.cc", |
| 518 "vr/android/cardboard/cardboard_vr_device_provider.h", | 520 "vr/android/cardboard/cardboard_vr_device_provider.h", |
| 519 ] | 521 ] |
| 520 } | 522 } |
| 521 } | 523 } |
| OLD | NEW |