| 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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 sources = [ | 194 sources = [ |
| 195 "test/run_all_unittests.cc", | 195 "test/run_all_unittests.cc", |
| 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/gmock", |
| 204 "//testing/gtest", | 205 "//testing/gtest", |
| 205 "//ui/base", | 206 "//ui/base", |
| 206 "//ui/base:test_support", | 207 "//ui/base:test_support", |
| 207 "//ui/events", | 208 "//ui/events", |
| 208 "//ui/gfx", | 209 "//ui/gfx", |
| 209 "//ui/gfx/geometry", | 210 "//ui/gfx/geometry", |
| 210 "//ui/gl", | 211 "//ui/gl", |
| 211 "//ui/gl:test_support", | 212 "//ui/gl:test_support", |
| 212 "//ui/resources", | 213 "//ui/resources", |
| 213 "//ui/resources:ui_test_pak", | 214 "//ui/resources:ui_test_pak", |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 if (!is_ios) { | 258 if (!is_ios) { |
| 258 sources += [ "mojo/struct_traits_unittest.cc" ] | 259 sources += [ "mojo/struct_traits_unittest.cc" ] |
| 259 deps += [ | 260 deps += [ |
| 260 "//mojo/edk/system", | 261 "//mojo/edk/system", |
| 261 "//ui/gfx:test_support", | 262 "//ui/gfx:test_support", |
| 262 "//ui/message_center/mojo:test_interfaces", | 263 "//ui/message_center/mojo:test_interfaces", |
| 263 ] | 264 ] |
| 264 } | 265 } |
| 265 } # !is_ios && !is_android | 266 } # !is_ios && !is_android |
| 266 } | 267 } |
| OLD | NEW |