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 # Collection of all components. You wouldn't link to this, but this is rather | 9 # Collection of all components. You wouldn't link to this, but this is rather |
10 # to reference the files so they can be compiled by the build system. | 10 # to reference the files so they can be compiled by the build system. |
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
267 #configs += [ "//components/precache/core:precache_config" ] | 267 #configs += [ "//components/precache/core:precache_config" ] |
268 | 268 |
269 if (toolkit_views) { | 269 if (toolkit_views) { |
270 # TODO(GYP) enable this as above. | 270 # TODO(GYP) enable this as above. |
271 #deps += [ "//components/constrained_window:unit_tests" ] | 271 #deps += [ "//components/constrained_window:unit_tests" ] |
272 } | 272 } |
273 if (is_win) { | 273 if (is_win) { |
274 deps += [ "//components/browser_watcher:unit_tests" ] | 274 deps += [ "//components/browser_watcher:unit_tests" ] |
275 } | 275 } |
276 } | 276 } |
| 277 |
| 278 test("components_browsertests") { |
| 279 sources = [ |
| 280 # "autofill/content/browser/risk/fingerprint_browsertest.cc", TODO(GYP) |
| 281 "autofill/content/renderer/password_form_conversion_utils_browsertest.cc", |
| 282 # "dom_distiller/content/distiller_page_web_contents_browsertest.cc", TODO
(GYP) |
| 283 ] |
| 284 |
| 285 deps = [ |
| 286 "//components/autofill/content/browser", |
| 287 "//components/autofill/content/renderer", |
| 288 "//components/dom_distiller/content", |
| 289 "//components/dom_distiller/core", |
| 290 "//components/password_manager/content/renderer", |
| 291 "//components/password_manager/content/renderer:browser_tests", |
| 292 "//components/pref_registry:test_support", |
| 293 "//components/resources:components_resources", |
| 294 "//components/strings", |
| 295 "//content/public/common", |
| 296 "//content/public/plugin", |
| 297 "//content/public/renderer", |
| 298 "//content/shell:content_shell_lib", |
| 299 "//content/test:browsertest_support", |
| 300 "//content/test:test_support", |
| 301 "//skia", |
| 302 "//testing/gmock", |
| 303 "//testing/gtest", |
| 304 ] |
| 305 } |
277 } | 306 } |
OLD | NEW |