| 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 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 388 "renderer_host/render_widget_host_view_aura.cc", | 388 "renderer_host/render_widget_host_view_aura.cc", |
| 389 "renderer_host/render_widget_host_view_aura.h", | 389 "renderer_host/render_widget_host_view_aura.h", |
| 390 "renderer_host/ui_events_helper.cc", | 390 "renderer_host/ui_events_helper.cc", |
| 391 "renderer_host/ui_events_helper.h", | 391 "renderer_host/ui_events_helper.h", |
| 392 "renderer_host/web_input_event_aura.cc", | 392 "renderer_host/web_input_event_aura.cc", |
| 393 "renderer_host/web_input_event_aura.h", | 393 "renderer_host/web_input_event_aura.h", |
| 394 "web_contents/aura/gesture_nav_simple.cc", | 394 "web_contents/aura/gesture_nav_simple.cc", |
| 395 "web_contents/aura/gesture_nav_simple.h", | 395 "web_contents/aura/gesture_nav_simple.h", |
| 396 "web_contents/aura/overscroll_navigation_overlay.cc", | 396 "web_contents/aura/overscroll_navigation_overlay.cc", |
| 397 "web_contents/aura/overscroll_navigation_overlay.h", | 397 "web_contents/aura/overscroll_navigation_overlay.h", |
| 398 "web_contents/aura/overscroll_window_animation.cc", | |
| 399 "web_contents/aura/overscroll_window_animation.h", | |
| 400 "web_contents/aura/overscroll_window_delegate.cc", | |
| 401 "web_contents/aura/overscroll_window_delegate.h", | |
| 402 "web_contents/aura/shadow_layer_delegate.cc", | 398 "web_contents/aura/shadow_layer_delegate.cc", |
| 403 "web_contents/aura/shadow_layer_delegate.h", | 399 "web_contents/aura/shadow_layer_delegate.h", |
| 400 "web_contents/aura/window_slider.cc", |
| 401 "web_contents/aura/window_slider.h", |
| 404 "web_contents/touch_editable_impl_aura.cc", | 402 "web_contents/touch_editable_impl_aura.cc", |
| 405 "web_contents/touch_editable_impl_aura.h", | 403 "web_contents/touch_editable_impl_aura.h", |
| 406 "web_contents/web_contents_view_aura.cc", | 404 "web_contents/web_contents_view_aura.cc", |
| 407 "web_contents/web_contents_view_aura.h", | 405 "web_contents/web_contents_view_aura.h", |
| 408 ] | 406 ] |
| 409 } | 407 } |
| 410 | 408 |
| 411 if (use_aura || is_mac) { | 409 if (use_aura || is_mac) { |
| 412 sources += | 410 sources += |
| 413 rebase_path(content_browser_gypi_values.compositor_browser_sources, | 411 rebase_path(content_browser_gypi_values.compositor_browser_sources, |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 452 } | 450 } |
| 453 | 451 |
| 454 if (is_linux && use_openssl) { | 452 if (is_linux && use_openssl) { |
| 455 deps += [ "//third_party/boringssl" ] | 453 deps += [ "//third_party/boringssl" ] |
| 456 } | 454 } |
| 457 | 455 |
| 458 if (enable_media_mojo_renderer) { | 456 if (enable_media_mojo_renderer) { |
| 459 deps += [ "//media/mojo/services:renderer_service" ] | 457 deps += [ "//media/mojo/services:renderer_service" ] |
| 460 } | 458 } |
| 461 } | 459 } |
| OLD | NEW |