Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(533)

Side by Side Diff: content/browser/BUILD.gn

Issue 895543005: Refactor GestureNavigation to eliminate code redundancy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Renamed method that was clashing with some Win macro Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 376 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 "renderer_host/render_widget_host_view_aura.cc", 387 "renderer_host/render_widget_host_view_aura.cc",
388 "renderer_host/render_widget_host_view_aura.h", 388 "renderer_host/render_widget_host_view_aura.h",
389 "renderer_host/ui_events_helper.cc", 389 "renderer_host/ui_events_helper.cc",
390 "renderer_host/ui_events_helper.h", 390 "renderer_host/ui_events_helper.h",
391 "renderer_host/web_input_event_aura.cc", 391 "renderer_host/web_input_event_aura.cc",
392 "renderer_host/web_input_event_aura.h", 392 "renderer_host/web_input_event_aura.h",
393 "web_contents/aura/gesture_nav_simple.cc", 393 "web_contents/aura/gesture_nav_simple.cc",
394 "web_contents/aura/gesture_nav_simple.h", 394 "web_contents/aura/gesture_nav_simple.h",
395 "web_contents/aura/overscroll_navigation_overlay.cc", 395 "web_contents/aura/overscroll_navigation_overlay.cc",
396 "web_contents/aura/overscroll_navigation_overlay.h", 396 "web_contents/aura/overscroll_navigation_overlay.h",
397 "web_contents/aura/overscroll_window_animation.cc",
398 "web_contents/aura/overscroll_window_animation.h",
399 "web_contents/aura/overscroll_window_delegate.cc",
400 "web_contents/aura/overscroll_window_delegate.h",
397 "web_contents/aura/shadow_layer_delegate.cc", 401 "web_contents/aura/shadow_layer_delegate.cc",
398 "web_contents/aura/shadow_layer_delegate.h", 402 "web_contents/aura/shadow_layer_delegate.h",
399 "web_contents/aura/window_slider.cc",
400 "web_contents/aura/window_slider.h",
401 "web_contents/touch_editable_impl_aura.cc", 403 "web_contents/touch_editable_impl_aura.cc",
402 "web_contents/touch_editable_impl_aura.h", 404 "web_contents/touch_editable_impl_aura.h",
403 "web_contents/web_contents_view_aura.cc", 405 "web_contents/web_contents_view_aura.cc",
404 "web_contents/web_contents_view_aura.h", 406 "web_contents/web_contents_view_aura.h",
405 ] 407 ]
406 } 408 }
407 409
408 if (use_aura || is_mac) { 410 if (use_aura || is_mac) {
409 sources += 411 sources +=
410 rebase_path(content_browser_gypi_values.compositor_browser_sources, 412 rebase_path(content_browser_gypi_values.compositor_browser_sources,
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
449 } 451 }
450 452
451 if (is_linux && use_openssl) { 453 if (is_linux && use_openssl) {
452 deps += [ "//third_party/boringssl" ] 454 deps += [ "//third_party/boringssl" ]
453 } 455 }
454 456
455 if (enable_media_mojo_renderer) { 457 if (enable_media_mojo_renderer) {
456 deps += [ "//media/mojo/services:renderer_service" ] 458 deps += [ "//media/mojo/services:renderer_service" ]
457 } 459 }
458 } 460 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698