| 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 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 "//ui/strings", | 353 "//ui/strings", |
| 354 "//ui/wm", | 354 "//ui/wm", |
| 355 ] | 355 ] |
| 356 } else { # Not aura. | 356 } else { # Not aura. |
| 357 sources -= [ | 357 sources -= [ |
| 358 "renderer_host/input/synthetic_gesture_target_aura.cc", | 358 "renderer_host/input/synthetic_gesture_target_aura.cc", |
| 359 "renderer_host/input/synthetic_gesture_target_aura.h", | 359 "renderer_host/input/synthetic_gesture_target_aura.h", |
| 360 "renderer_host/native_web_keyboard_event_aura.cc", | 360 "renderer_host/native_web_keyboard_event_aura.cc", |
| 361 "renderer_host/render_widget_host_view_aura.cc", | 361 "renderer_host/render_widget_host_view_aura.cc", |
| 362 "renderer_host/render_widget_host_view_aura.h", | 362 "renderer_host/render_widget_host_view_aura.h", |
| 363 "renderer_host/touch_handle_drawable_aura.cc", |
| 364 "renderer_host/touch_handle_drawable_aura.h", |
| 365 "renderer_host/touch_selection_controller_aura.cc", |
| 366 "renderer_host/touch_selection_controller_aura.h", |
| 363 "renderer_host/ui_events_helper.cc", | 367 "renderer_host/ui_events_helper.cc", |
| 364 "renderer_host/ui_events_helper.h", | 368 "renderer_host/ui_events_helper.h", |
| 365 "renderer_host/web_input_event_aura.cc", | 369 "renderer_host/web_input_event_aura.cc", |
| 366 "renderer_host/web_input_event_aura.h", | 370 "renderer_host/web_input_event_aura.h", |
| 367 "web_contents/aura/gesture_nav_simple.cc", | 371 "web_contents/aura/gesture_nav_simple.cc", |
| 368 "web_contents/aura/gesture_nav_simple.h", | 372 "web_contents/aura/gesture_nav_simple.h", |
| 369 "web_contents/aura/image_window_delegate.cc", | 373 "web_contents/aura/image_window_delegate.cc", |
| 370 "web_contents/aura/image_window_delegate.h", | 374 "web_contents/aura/image_window_delegate.h", |
| 371 "web_contents/aura/overscroll_navigation_overlay.cc", | 375 "web_contents/aura/overscroll_navigation_overlay.cc", |
| 372 "web_contents/aura/overscroll_navigation_overlay.h", | 376 "web_contents/aura/overscroll_navigation_overlay.h", |
| 373 "web_contents/aura/shadow_layer_delegate.cc", | 377 "web_contents/aura/shadow_layer_delegate.cc", |
| 374 "web_contents/aura/shadow_layer_delegate.h", | 378 "web_contents/aura/shadow_layer_delegate.h", |
| 375 "web_contents/aura/window_slider.cc", | 379 "web_contents/aura/window_slider.cc", |
| 376 "web_contents/aura/window_slider.h", | 380 "web_contents/aura/window_slider.h", |
| 377 "web_contents/touch_editable_impl_aura.cc", | |
| 378 "web_contents/touch_editable_impl_aura.h", | |
| 379 "web_contents/web_contents_view_aura.cc", | 381 "web_contents/web_contents_view_aura.cc", |
| 380 "web_contents/web_contents_view_aura.h", | 382 "web_contents/web_contents_view_aura.h", |
| 381 ] | 383 ] |
| 382 } | 384 } |
| 383 | 385 |
| 384 if (use_aura || is_mac) { | 386 if (use_aura || is_mac) { |
| 385 sources += rebase_path( | 387 sources += rebase_path( |
| 386 content_browser_gypi_values.compositor_browser_sources, | 388 content_browser_gypi_values.compositor_browser_sources, |
| 387 ".", "//content") | 389 ".", "//content") |
| 388 if (!use_x11) { | 390 if (!use_x11) { |
| (...skipping 27 matching lines...) Expand all Loading... |
| 416 | 418 |
| 417 if (enable_browser_cdms) { | 419 if (enable_browser_cdms) { |
| 418 sources += [ | 420 sources += [ |
| 419 "media/cdm/browser_cdm_manager.cc", | 421 "media/cdm/browser_cdm_manager.cc", |
| 420 "media/cdm/browser_cdm_manager.h", | 422 "media/cdm/browser_cdm_manager.h", |
| 421 "media/media_web_contents_observer.cc", | 423 "media/media_web_contents_observer.cc", |
| 422 "media/media_web_contents_observer.h", | 424 "media/media_web_contents_observer.h", |
| 423 ] | 425 ] |
| 424 } | 426 } |
| 425 } | 427 } |
| OLD | NEW |