| 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 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 "renderer_host/web_input_event_aura.cc", | 376 "renderer_host/web_input_event_aura.cc", |
| 377 "renderer_host/web_input_event_aura.h", | 377 "renderer_host/web_input_event_aura.h", |
| 378 "web_contents/aura/gesture_nav_simple.cc", | 378 "web_contents/aura/gesture_nav_simple.cc", |
| 379 "web_contents/aura/gesture_nav_simple.h", | 379 "web_contents/aura/gesture_nav_simple.h", |
| 380 "web_contents/aura/overscroll_navigation_overlay.cc", | 380 "web_contents/aura/overscroll_navigation_overlay.cc", |
| 381 "web_contents/aura/overscroll_navigation_overlay.h", | 381 "web_contents/aura/overscroll_navigation_overlay.h", |
| 382 "web_contents/aura/shadow_layer_delegate.cc", | 382 "web_contents/aura/shadow_layer_delegate.cc", |
| 383 "web_contents/aura/shadow_layer_delegate.h", | 383 "web_contents/aura/shadow_layer_delegate.h", |
| 384 "web_contents/aura/window_slider.cc", | 384 "web_contents/aura/window_slider.cc", |
| 385 "web_contents/aura/window_slider.h", | 385 "web_contents/aura/window_slider.h", |
| 386 "web_contents/touch_editable_impl_aura.cc", | 386 "web_contents/touch_selection_controller_aura_client_impl.cc", |
| 387 "web_contents/touch_editable_impl_aura.h", | 387 "web_contents/touch_selection_controller_aura_client_impl.h", |
| 388 "web_contents/web_contents_view_aura.cc", | 388 "web_contents/web_contents_view_aura.cc", |
| 389 "web_contents/web_contents_view_aura.h", | 389 "web_contents/web_contents_view_aura.h", |
| 390 ] | 390 ] |
| 391 } | 391 } |
| 392 | 392 |
| 393 if (use_aura || is_mac) { | 393 if (use_aura || is_mac) { |
| 394 sources += | 394 sources += |
| 395 rebase_path(content_browser_gypi_values.compositor_browser_sources, | 395 rebase_path(content_browser_gypi_values.compositor_browser_sources, |
| 396 ".", | 396 ".", |
| 397 "//content") | 397 "//content") |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 434 } | 434 } |
| 435 | 435 |
| 436 if (is_linux && use_openssl) { | 436 if (is_linux && use_openssl) { |
| 437 deps += [ "//third_party/boringssl" ] | 437 deps += [ "//third_party/boringssl" ] |
| 438 } | 438 } |
| 439 | 439 |
| 440 if (enable_media_mojo_renderer) { | 440 if (enable_media_mojo_renderer) { |
| 441 deps += [ "//media/mojo/services:renderer_service" ] | 441 deps += [ "//media/mojo/services:renderer_service" ] |
| 442 } | 442 } |
| 443 } | 443 } |
| OLD | NEW |