| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build/module_args/v8.gni") | 9 import("//build/module_args/v8.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 "//ui/wm", | 124 "//ui/wm", |
| 125 ] | 125 ] |
| 126 } | 126 } |
| 127 | 127 |
| 128 if (use_aura || is_mac) { | 128 if (use_aura || is_mac) { |
| 129 deps += [ "//ui/compositor" ] | 129 deps += [ "//ui/compositor" ] |
| 130 } | 130 } |
| 131 | 131 |
| 132 if (use_ozone) { | 132 if (use_ozone) { |
| 133 deps += [ "//ui/ozone" ] | 133 deps += [ "//ui/ozone" ] |
| 134 } else { |
| 135 sources -= [ |
| 136 "test_client_native_pixmap_factory_ozone.cc", |
| 137 "test_client_native_pixmap_factory_ozone.h", |
| 138 ] |
| 134 } | 139 } |
| 135 | 140 |
| 136 if (is_win) { | 141 if (is_win) { |
| 137 deps += [ | 142 deps += [ |
| 138 "//content:startup_helper_win", | 143 "//content:startup_helper_win", |
| 139 "//third_party/iaccessible2", | 144 "//third_party/iaccessible2", |
| 140 ] | 145 ] |
| 141 } | 146 } |
| 142 | 147 |
| 143 if (!is_android && !is_ios) { | 148 if (!is_android && !is_ios) { |
| (...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 778 "//testing/gtest", | 783 "//testing/gtest", |
| 779 "//third_party/WebKit/public:blink", | 784 "//third_party/WebKit/public:blink", |
| 780 "//ui/base", | 785 "//ui/base", |
| 781 "//ui/gfx", | 786 "//ui/gfx", |
| 782 "//ui/gfx/geometry", | 787 "//ui/gfx/geometry", |
| 783 "//ui/gl", | 788 "//ui/gl", |
| 784 "//ui/gl:test_support", | 789 "//ui/gl:test_support", |
| 785 ] | 790 ] |
| 786 } | 791 } |
| 787 } | 792 } |
| OLD | NEW |