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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 "//ui/wm", | 123 "//ui/wm", |
124 ] | 124 ] |
125 } | 125 } |
126 | 126 |
127 if (use_aura || is_mac) { | 127 if (use_aura || is_mac) { |
128 deps += [ "//ui/compositor" ] | 128 deps += [ "//ui/compositor" ] |
129 } | 129 } |
130 | 130 |
131 if (use_ozone) { | 131 if (use_ozone) { |
132 deps += [ "//ui/ozone" ] | 132 deps += [ "//ui/ozone" ] |
| 133 } else { |
| 134 sources -= [ |
| 135 "test_native_pixmap_manager_ozone.cc", |
| 136 "test_native_pixmap_manager_ozone.h", |
| 137 ] |
133 } | 138 } |
134 | 139 |
135 if (is_win) { | 140 if (is_win) { |
136 deps += [ | 141 deps += [ |
137 "//content:startup_helper_win", | 142 "//content:startup_helper_win", |
138 "//third_party/iaccessible2", | 143 "//third_party/iaccessible2", |
139 ] | 144 ] |
140 } | 145 } |
141 | 146 |
142 if (!is_android && !is_ios) { | 147 if (!is_android && !is_ios) { |
(...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
700 "//testing/gtest", | 705 "//testing/gtest", |
701 "//third_party/WebKit/public:blink", | 706 "//third_party/WebKit/public:blink", |
702 "//ui/base", | 707 "//ui/base", |
703 "//ui/gfx", | 708 "//ui/gfx", |
704 "//ui/gfx/geometry", | 709 "//ui/gfx/geometry", |
705 "//ui/gl", | 710 "//ui/gl", |
706 "//ui/gl:test_support", | 711 "//ui/gl:test_support", |
707 ] | 712 ] |
708 } | 713 } |
709 } | 714 } |
OLD | NEW |