| 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 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 "renderer_host/compositor_resize_lock_aura.cc", | 416 "renderer_host/compositor_resize_lock_aura.cc", |
| 417 "renderer_host/compositor_resize_lock_aura.h", | 417 "renderer_host/compositor_resize_lock_aura.h", |
| 418 "renderer_host/input/synthetic_gesture_target_aura.cc", | 418 "renderer_host/input/synthetic_gesture_target_aura.cc", |
| 419 "renderer_host/input/synthetic_gesture_target_aura.h", | 419 "renderer_host/input/synthetic_gesture_target_aura.h", |
| 420 "renderer_host/input/touch_selection_controller_client_aura.cc", |
| 421 "renderer_host/input/touch_selection_controller_client_aura.h", |
| 420 "renderer_host/native_web_keyboard_event_aura.cc", | 422 "renderer_host/native_web_keyboard_event_aura.cc", |
| 421 "renderer_host/render_widget_host_view_aura.cc", | 423 "renderer_host/render_widget_host_view_aura.cc", |
| 422 "renderer_host/render_widget_host_view_aura.h", | 424 "renderer_host/render_widget_host_view_aura.h", |
| 423 "renderer_host/ui_events_helper.cc", | 425 "renderer_host/ui_events_helper.cc", |
| 424 "renderer_host/ui_events_helper.h", | 426 "renderer_host/ui_events_helper.h", |
| 425 "renderer_host/web_input_event_aura.cc", | 427 "renderer_host/web_input_event_aura.cc", |
| 426 "renderer_host/web_input_event_aura.h", | 428 "renderer_host/web_input_event_aura.h", |
| 427 "web_contents/aura/gesture_nav_simple.cc", | 429 "web_contents/aura/gesture_nav_simple.cc", |
| 428 "web_contents/aura/gesture_nav_simple.h", | 430 "web_contents/aura/gesture_nav_simple.h", |
| 429 "web_contents/aura/overscroll_navigation_overlay.cc", | 431 "web_contents/aura/overscroll_navigation_overlay.cc", |
| 430 "web_contents/aura/overscroll_navigation_overlay.h", | 432 "web_contents/aura/overscroll_navigation_overlay.h", |
| 431 "web_contents/aura/overscroll_window_animation.cc", | 433 "web_contents/aura/overscroll_window_animation.cc", |
| 432 "web_contents/aura/overscroll_window_animation.h", | 434 "web_contents/aura/overscroll_window_animation.h", |
| 433 "web_contents/aura/overscroll_window_delegate.cc", | 435 "web_contents/aura/overscroll_window_delegate.cc", |
| 434 "web_contents/aura/overscroll_window_delegate.h", | 436 "web_contents/aura/overscroll_window_delegate.h", |
| 435 "web_contents/aura/shadow_layer_delegate.cc", | 437 "web_contents/aura/shadow_layer_delegate.cc", |
| 436 "web_contents/aura/shadow_layer_delegate.h", | 438 "web_contents/aura/shadow_layer_delegate.h", |
| 437 "web_contents/touch_editable_impl_aura.cc", | |
| 438 "web_contents/touch_editable_impl_aura.h", | |
| 439 "web_contents/web_contents_view_aura.cc", | 439 "web_contents/web_contents_view_aura.cc", |
| 440 "web_contents/web_contents_view_aura.h", | 440 "web_contents/web_contents_view_aura.h", |
| 441 ] | 441 ] |
| 442 } | 442 } |
| 443 | 443 |
| 444 if (use_aura || is_mac) { | 444 if (use_aura || is_mac) { |
| 445 sources += | 445 sources += |
| 446 rebase_path(content_browser_gypi_values.compositor_browser_sources, | 446 rebase_path(content_browser_gypi_values.compositor_browser_sources, |
| 447 ".", | 447 ".", |
| 448 "//content") | 448 "//content") |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 499 if (enable_webvr) { | 499 if (enable_webvr) { |
| 500 sources += [ | 500 sources += [ |
| 501 "vr/vr_device.cc", | 501 "vr/vr_device.cc", |
| 502 "vr/vr_device.h", | 502 "vr/vr_device.h", |
| 503 "vr/vr_device_manager.cc", | 503 "vr/vr_device_manager.cc", |
| 504 "vr/vr_device_manager.h", | 504 "vr/vr_device_manager.h", |
| 505 "vr/vr_device_provider.h", | 505 "vr/vr_device_provider.h", |
| 506 ] | 506 ] |
| 507 } | 507 } |
| 508 } | 508 } |
| OLD | NEW |