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/ui.gni") | 5 import ("//build/config/ui.gni") |
6 | 6 |
7 component("aura") { | 7 component("aura") { |
8 sources = [ | 8 sources = [ |
9 "client/aura_constants.cc", | 9 "client/aura_constants.cc", |
10 "client/aura_constants.h", | 10 "client/aura_constants.h", |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 "//skia", | 176 "//skia", |
177 "//testing/gtest", | 177 "//testing/gtest", |
178 "//ui/base", | 178 "//ui/base", |
179 "//ui/base:test_support", | 179 "//ui/base:test_support", |
180 "//ui/compositor:test_support", | 180 "//ui/compositor:test_support", |
181 "//ui/events", | 181 "//ui/events", |
182 "//ui/events:events_base", | 182 "//ui/events:events_base", |
183 "//ui/events:test_support", | 183 "//ui/events:test_support", |
184 "//ui/gfx", | 184 "//ui/gfx", |
185 "//ui/gfx/geometry", | 185 "//ui/gfx/geometry", |
| 186 "//ui/wm", |
186 ] | 187 ] |
187 | 188 |
188 if (is_win) { | 189 if (is_win) { |
189 cflags = [ | 190 cflags = [ |
190 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 191 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
191 ] | 192 ] |
192 } | 193 } |
193 | 194 |
194 if (use_aura) { | 195 if (use_aura) { |
195 if (is_win) { | 196 if (is_win) { |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 "//ui/gfx/geometry", | 294 "//ui/gfx/geometry", |
294 "//ui/gl", | 295 "//ui/gl", |
295 ] | 296 ] |
296 | 297 |
297 if (is_linux) { | 298 if (is_linux) { |
298 deps += [ | 299 deps += [ |
299 "//third_party/mesa", | 300 "//third_party/mesa", |
300 ] | 301 ] |
301 } | 302 } |
302 } | 303 } |
OLD | NEW |