| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 # TODO(msw|mukai|dewittj): Move ash-specific files: crbug.com/585175 | 9 # TODO(msw|mukai|dewittj): Move ash-specific files: crbug.com/585175 |
| 10 component("message_center") { | 10 component("message_center") { |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 ] | 196 ] |
| 197 | 197 |
| 198 deps = [ | 198 deps = [ |
| 199 ":message_center", | 199 ":message_center", |
| 200 ":test_support", | 200 ":test_support", |
| 201 "//base", | 201 "//base", |
| 202 "//base/test:test_support", | 202 "//base/test:test_support", |
| 203 "//skia", | 203 "//skia", |
| 204 "//testing/gtest", | 204 "//testing/gtest", |
| 205 "//ui/base", | 205 "//ui/base", |
| 206 "//ui/base:test_support", |
| 206 "//ui/events", | 207 "//ui/events", |
| 207 "//ui/gfx", | 208 "//ui/gfx", |
| 208 "//ui/gfx/geometry", | 209 "//ui/gfx/geometry", |
| 209 "//ui/gl", | 210 "//ui/gl", |
| 210 "//ui/gl:test_support", | 211 "//ui/gl:test_support", |
| 211 "//ui/resources", | 212 "//ui/resources", |
| 212 "//ui/resources:ui_test_pak", | 213 "//ui/resources:ui_test_pak", |
| 213 "//url", | 214 "//url", |
| 214 ] | 215 ] |
| 215 | 216 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 if (!is_ios) { | 257 if (!is_ios) { |
| 257 sources += [ "mojo/struct_traits_unittest.cc" ] | 258 sources += [ "mojo/struct_traits_unittest.cc" ] |
| 258 deps += [ | 259 deps += [ |
| 259 "//mojo/edk/system", | 260 "//mojo/edk/system", |
| 260 "//ui/gfx:test_support", | 261 "//ui/gfx:test_support", |
| 261 "//ui/message_center/mojo:test_interfaces", | 262 "//ui/message_center/mojo:test_interfaces", |
| 262 ] | 263 ] |
| 263 } | 264 } |
| 264 } # !is_ios && !is_android | 265 } # !is_ios && !is_android |
| 265 } | 266 } |
| OLD | NEW |