| 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("//build/module_args/v8.gni") | 8 import("//build/module_args/v8.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 10 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
| (...skipping 582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 593 if (use_aura) { | 593 if (use_aura) { |
| 594 deps += [ | 594 deps += [ |
| 595 "//ui/aura", | 595 "//ui/aura", |
| 596 "//ui/wm", | 596 "//ui/wm", |
| 597 ] | 597 ] |
| 598 } else { | 598 } else { |
| 599 sources -= [ | 599 sources -= [ |
| 600 "../browser/renderer_host/render_widget_host_view_aura_unittest.cc", | 600 "../browser/renderer_host/render_widget_host_view_aura_unittest.cc", |
| 601 "../browser/renderer_host/web_input_event_aura_unittest.cc", | 601 "../browser/renderer_host/web_input_event_aura_unittest.cc", |
| 602 "../browser/web_contents/aura/overscroll_navigation_overlay_unittest.cc"
, | 602 "../browser/web_contents/aura/overscroll_navigation_overlay_unittest.cc"
, |
| 603 "../browser/web_contents/aura/overscroll_window_animation_unittest.cc", | 603 "../browser/web_contents/aura/window_slider_unittest.cc", |
| 604 "../browser/web_contents/aura/overscroll_window_delegate_unittest.cc", | |
| 605 ] | 604 ] |
| 606 } | 605 } |
| 607 if (use_aura || toolkit_views) { | 606 if (use_aura || toolkit_views) { |
| 608 deps += [ "//ui/events:test_support" ] | 607 deps += [ "//ui/events:test_support" ] |
| 609 } | 608 } |
| 610 if (!use_aura && !is_mac) { | 609 if (!use_aura && !is_mac) { |
| 611 sources -= [ | 610 sources -= [ |
| 612 "../browser/compositor/buffer_queue_unittest.cc", | 611 "../browser/compositor/buffer_queue_unittest.cc", |
| 613 "../browser/compositor/reflector_impl_unittest.cc", | 612 "../browser/compositor/reflector_impl_unittest.cc", |
| 614 "../browser/compositor/software_browser_compositor_output_surface_unitte
st.cc", | 613 "../browser/compositor/software_browser_compositor_output_surface_unitte
st.cc", |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 706 "//content/public/common", | 705 "//content/public/common", |
| 707 "//testing/gtest", | 706 "//testing/gtest", |
| 708 "//third_party/WebKit/public:blink", | 707 "//third_party/WebKit/public:blink", |
| 709 "//ui/base", | 708 "//ui/base", |
| 710 "//ui/gfx", | 709 "//ui/gfx", |
| 711 "//ui/gfx/geometry", | 710 "//ui/gfx/geometry", |
| 712 "//ui/gl", | 711 "//ui/gl", |
| 713 ] | 712 ] |
| 714 } | 713 } |
| 715 } | 714 } |
| OLD | NEW |