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

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

Issue 880703002: Move ImageWindowDelegate to ui/aura_extra (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated a comment Created 5 years, 10 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
« no previous file with comments | « build/all.gyp ('k') | content/browser/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 if (is_chromeos) { 352 if (is_chromeos) {
353 deps += [ 353 deps += [
354 "//chromeos", 354 "//chromeos",
355 "//chromeos:power_manager_proto", 355 "//chromeos:power_manager_proto",
356 ] 356 ]
357 } 357 }
358 358
359 if (use_aura) { 359 if (use_aura) {
360 deps += [ 360 deps += [
361 "//ui/aura", 361 "//ui/aura",
362 "//ui/aura_extra",
362 "//ui/strings", 363 "//ui/strings",
363 "//ui/wm", 364 "//ui/wm",
364 ] 365 ]
365 } else { # Not aura. 366 } else { # Not aura.
366 sources -= [ 367 sources -= [
367 "renderer_host/input/synthetic_gesture_target_aura.cc", 368 "renderer_host/input/synthetic_gesture_target_aura.cc",
368 "renderer_host/input/synthetic_gesture_target_aura.h", 369 "renderer_host/input/synthetic_gesture_target_aura.h",
369 "renderer_host/native_web_keyboard_event_aura.cc", 370 "renderer_host/native_web_keyboard_event_aura.cc",
370 "renderer_host/render_widget_host_view_aura.cc", 371 "renderer_host/render_widget_host_view_aura.cc",
371 "renderer_host/render_widget_host_view_aura.h", 372 "renderer_host/render_widget_host_view_aura.h",
372 "renderer_host/ui_events_helper.cc", 373 "renderer_host/ui_events_helper.cc",
373 "renderer_host/ui_events_helper.h", 374 "renderer_host/ui_events_helper.h",
374 "renderer_host/web_input_event_aura.cc", 375 "renderer_host/web_input_event_aura.cc",
375 "renderer_host/web_input_event_aura.h", 376 "renderer_host/web_input_event_aura.h",
376 "web_contents/aura/gesture_nav_simple.cc", 377 "web_contents/aura/gesture_nav_simple.cc",
377 "web_contents/aura/gesture_nav_simple.h", 378 "web_contents/aura/gesture_nav_simple.h",
378 "web_contents/aura/image_window_delegate.cc",
379 "web_contents/aura/image_window_delegate.h",
380 "web_contents/aura/overscroll_navigation_overlay.cc", 379 "web_contents/aura/overscroll_navigation_overlay.cc",
381 "web_contents/aura/overscroll_navigation_overlay.h", 380 "web_contents/aura/overscroll_navigation_overlay.h",
382 "web_contents/aura/shadow_layer_delegate.cc", 381 "web_contents/aura/shadow_layer_delegate.cc",
383 "web_contents/aura/shadow_layer_delegate.h", 382 "web_contents/aura/shadow_layer_delegate.h",
384 "web_contents/aura/window_slider.cc", 383 "web_contents/aura/window_slider.cc",
385 "web_contents/aura/window_slider.h", 384 "web_contents/aura/window_slider.h",
386 "web_contents/touch_editable_impl_aura.cc", 385 "web_contents/touch_editable_impl_aura.cc",
387 "web_contents/touch_editable_impl_aura.h", 386 "web_contents/touch_editable_impl_aura.h",
388 "web_contents/web_contents_view_aura.cc", 387 "web_contents/web_contents_view_aura.cc",
389 "web_contents/web_contents_view_aura.h", 388 "web_contents/web_contents_view_aura.h",
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
436 "media/cdm/browser_cdm_manager.h", 435 "media/cdm/browser_cdm_manager.h",
437 "media/media_web_contents_observer.cc", 436 "media/media_web_contents_observer.cc",
438 "media/media_web_contents_observer.h", 437 "media/media_web_contents_observer.h",
439 ] 438 ]
440 } 439 }
441 440
442 if (is_linux && use_openssl) { 441 if (is_linux && use_openssl) {
443 deps += [ "//third_party/boringssl" ] 442 deps += [ "//third_party/boringssl" ]
444 } 443 }
445 } 444 }
OLDNEW
« no previous file with comments | « build/all.gyp ('k') | content/browser/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698