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", | |
187 ] | 186 ] |
188 | 187 |
189 if (is_win) { | 188 if (is_win) { |
190 cflags = [ | 189 cflags = [ |
191 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 190 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
192 ] | 191 ] |
193 } | 192 } |
194 | 193 |
195 if (use_aura) { | 194 if (use_aura) { |
196 if (is_win) { | 195 if (is_win) { |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
294 "//ui/gfx/geometry", | 293 "//ui/gfx/geometry", |
295 "//ui/gl", | 294 "//ui/gl", |
296 ] | 295 ] |
297 | 296 |
298 if (is_linux) { | 297 if (is_linux) { |
299 deps += [ | 298 deps += [ |
300 "//third_party/mesa", | 299 "//third_party/mesa", |
301 ] | 300 ] |
302 } | 301 } |
303 } | 302 } |
OLD | NEW |