| 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 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 component("aura") { | 8 component("aura") { |
| 9 sources = [ | 9 sources = [ |
| 10 "../wm/public/activation_change_observer.cc", | 10 "../wm/public/activation_change_observer.cc", |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 179 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 180 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 180 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 181 | 181 |
| 182 public_deps = [ | 182 public_deps = [ |
| 183 ":aura", | 183 ":aura", |
| 184 ] | 184 ] |
| 185 deps = [ | 185 deps = [ |
| 186 "//skia", | 186 "//skia", |
| 187 "//testing/gtest", | 187 "//testing/gtest", |
| 188 "//ui/base:test_support", | 188 "//ui/base:test_support", |
| 189 "//ui/base/ime", |
| 189 "//ui/compositor:test_support", | 190 "//ui/compositor:test_support", |
| 190 "//ui/events", | 191 "//ui/events", |
| 191 "//ui/events:events_base", | 192 "//ui/events:events_base", |
| 192 "//ui/events:test_support", | 193 "//ui/events:test_support", |
| 193 "//ui/gfx", | 194 "//ui/gfx", |
| 194 "//ui/gfx/geometry", | 195 "//ui/gfx/geometry", |
| 195 "//ui/wm", | 196 "//ui/wm", |
| 196 ] | 197 ] |
| 197 | 198 |
| 198 if (is_win) { | 199 if (is_win) { |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 "//ui/events:gesture_detection", | 295 "//ui/events:gesture_detection", |
| 295 "//ui/gfx", | 296 "//ui/gfx", |
| 296 "//ui/gfx/geometry", | 297 "//ui/gfx/geometry", |
| 297 "//ui/gl", | 298 "//ui/gl", |
| 298 ] | 299 ] |
| 299 | 300 |
| 300 if (is_linux) { | 301 if (is_linux) { |
| 301 deps += [ "//third_party/mesa" ] | 302 deps += [ "//third_party/mesa" ] |
| 302 } | 303 } |
| 303 } | 304 } |
| OLD | NEW |