| 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 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 588 "../browser/web_contents/aura/overscroll_navigation_overlay_unittest.cc"
, | 588 "../browser/web_contents/aura/overscroll_navigation_overlay_unittest.cc"
, |
| 589 "../browser/web_contents/aura/window_slider_unittest.cc", | 589 "../browser/web_contents/aura/window_slider_unittest.cc", |
| 590 ] | 590 ] |
| 591 } | 591 } |
| 592 if (use_aura || toolkit_views) { | 592 if (use_aura || toolkit_views) { |
| 593 deps += [ "//ui/events:test_support" ] | 593 deps += [ "//ui/events:test_support" ] |
| 594 } | 594 } |
| 595 if (!use_aura && !is_mac) { | 595 if (!use_aura && !is_mac) { |
| 596 sources -= [ | 596 sources -= [ |
| 597 "../browser/compositor/buffer_queue_unittest.cc", | 597 "../browser/compositor/buffer_queue_unittest.cc", |
| 598 "../browser/compositor/reflector_impl_unittest.cc", | |
| 599 "../browser/compositor/software_browser_compositor_output_surface_unitte
st.cc", | 598 "../browser/compositor/software_browser_compositor_output_surface_unitte
st.cc", |
| 600 ] | 599 ] |
| 601 } | 600 } |
| 602 | 601 |
| 603 if (!is_win && !is_mac) { | 602 if (!is_win && !is_mac) { |
| 604 sources -= [ "../common/plugin_list_unittest.cc" ] | 603 sources -= [ "../common/plugin_list_unittest.cc" ] |
| 605 } | 604 } |
| 606 | 605 |
| 607 if (use_ozone) { | 606 if (use_ozone) { |
| 608 deps += [ | 607 deps += [ |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 690 "//content/public/common", | 689 "//content/public/common", |
| 691 "//testing/gtest", | 690 "//testing/gtest", |
| 692 "//third_party/WebKit/public:blink", | 691 "//third_party/WebKit/public:blink", |
| 693 "//ui/base", | 692 "//ui/base", |
| 694 "//ui/gfx", | 693 "//ui/gfx", |
| 695 "//ui/gfx/geometry", | 694 "//ui/gfx/geometry", |
| 696 "//ui/gl", | 695 "//ui/gl", |
| 697 ] | 696 ] |
| 698 } | 697 } |
| 699 } | 698 } |
| OLD | NEW |