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 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
9 | 9 |
10 # Collection of all components. You wouldn't link to this, but this is rather | 10 # Collection of all components. You wouldn't link to this, but this is rather |
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 "//components/strings", | 307 "//components/strings", |
308 "//ui/resources", | 308 "//ui/resources", |
309 "//ui/strings", | 309 "//ui/strings", |
310 ] | 310 ] |
311 } | 311 } |
312 | 312 |
313 test("components_browsertests") { | 313 test("components_browsertests") { |
314 sources = [ | 314 sources = [ |
315 "autofill/content/browser/risk/fingerprint_browsertest.cc", | 315 "autofill/content/browser/risk/fingerprint_browsertest.cc", |
316 "autofill/content/renderer/password_form_conversion_utils_browsertest.cc", | 316 "autofill/content/renderer/password_form_conversion_utils_browsertest.cc", |
| 317 "dom_distiller/content/distillable_page_utils_browsertest.cc", |
317 "dom_distiller/content/distiller_page_web_contents_browsertest.cc", | 318 "dom_distiller/content/distiller_page_web_contents_browsertest.cc", |
318 "password_manager/content/renderer/credential_manager_client_browsertest.cc"
, | 319 "password_manager/content/renderer/credential_manager_client_browsertest.cc"
, |
319 ] | 320 ] |
320 | 321 |
321 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 322 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
322 | 323 |
323 deps = [ | 324 deps = [ |
324 "autofill/content/browser", | 325 "autofill/content/browser", |
325 "autofill/content/renderer", | 326 "autofill/content/renderer", |
326 "content_settings/core/common", | 327 "content_settings/core/common", |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
367 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 368 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
368 | 369 |
369 deps = [ | 370 deps = [ |
370 "//base", | 371 "//base", |
371 "//base/test:test_support_perf", | 372 "//base/test:test_support_perf", |
372 "//testing/gtest", | 373 "//testing/gtest", |
373 "//content/test:test_support", | 374 "//content/test:test_support", |
374 "//components/visitedlink/browser", | 375 "//components/visitedlink/browser", |
375 ] | 376 ] |
376 } | 377 } |
OLD | NEW |