| 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 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 deps = [ | 174 deps = [ |
| 175 "//skia", | 175 "//skia", |
| 176 "//testing/gtest", | 176 "//testing/gtest", |
| 177 "//ui/base:test_support", | 177 "//ui/base:test_support", |
| 178 "//ui/compositor:test_support", | 178 "//ui/compositor:test_support", |
| 179 "//ui/events", | 179 "//ui/events", |
| 180 "//ui/events:events_base", | 180 "//ui/events:events_base", |
| 181 "//ui/events:test_support", | 181 "//ui/events:test_support", |
| 182 "//ui/gfx", | 182 "//ui/gfx", |
| 183 "//ui/gfx/geometry", | 183 "//ui/gfx/geometry", |
| 184 "//ui/gfx/x", |
| 184 "//ui/wm", | 185 "//ui/wm", |
| 185 ] | 186 ] |
| 186 | 187 |
| 187 if (is_win) { | 188 if (is_win) { |
| 188 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t
runcations. | 189 cflags = [ "/wd4267" ] # TODO(jschuh): crbug.com/167187 fix size_t to int t
runcations. |
| 189 } | 190 } |
| 190 | 191 |
| 191 if (use_aura) { | 192 if (use_aura) { |
| 192 if (is_win) { | 193 if (is_win) { |
| 193 sources += [ "test/ui_controls_factory_aurawin.cc" ] | 194 sources += [ "test/ui_controls_factory_aurawin.cc" ] |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 283 "//ui/events:gesture_detection", | 284 "//ui/events:gesture_detection", |
| 284 "//ui/gfx", | 285 "//ui/gfx", |
| 285 "//ui/gfx/geometry", | 286 "//ui/gfx/geometry", |
| 286 "//ui/gl", | 287 "//ui/gl", |
| 287 ] | 288 ] |
| 288 | 289 |
| 289 if (is_linux) { | 290 if (is_linux) { |
| 290 deps += [ "//third_party/mesa" ] | 291 deps += [ "//third_party/mesa" ] |
| 291 } | 292 } |
| 292 } | 293 } |
| OLD | NEW |