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/crypto.gni") | 5 import("//build/config/crypto.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//build/module_args/v8.gni") | 8 import("//build/module_args/v8.gni") |
9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
10 | 10 |
11 # This target exists to reference other test executables to bring these files | 11 # This target exists to reference other test executables to bring these files |
12 # into the build. | 12 # into the build. |
13 group("test") { | 13 group("test") { |
14 testonly = true | 14 testonly = true |
15 deps = [ | |
16 "//chrome/test/perf", | |
17 ] | |
18 } | 15 } |
19 | 16 |
20 # GYP version: chrome/chrome_tests_unit.gypi:test_support_common | 17 # GYP version: chrome/chrome_tests_unit.gypi:test_support_common |
21 source_set("test_support") { | 18 source_set("test_support") { |
22 defines = [] | 19 defines = [] |
23 testonly = true | 20 testonly = true |
24 | 21 |
25 sources = [ | 22 sources = [ |
26 "base/chrome_process_util.cc", | 23 "base/chrome_process_util.cc", |
27 "base/chrome_process_util.h", | 24 "base/chrome_process_util.h", |
(...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
613 "//base/allocator", | 610 "//base/allocator", |
614 "//base/test:test_support", | 611 "//base/test:test_support", |
615 "//chrome:browser_tests_pak", | 612 "//chrome:browser_tests_pak", |
616 "//chrome:packed_extra_resources", | 613 "//chrome:packed_extra_resources", |
617 "//chrome:packed_resources", | 614 "//chrome:packed_resources", |
618 "//chrome:resources", | 615 "//chrome:resources", |
619 "//chrome:strings", | 616 "//chrome:strings", |
620 "//chrome/browser", | 617 "//chrome/browser", |
621 "//chrome/common/extensions/api", | 618 "//chrome/common/extensions/api", |
622 "//chrome/renderer", | 619 "//chrome/renderer", |
623 "//chrome/test/perf", | |
624 "//components/autofill/content/browser:risk_proto", | 620 "//components/autofill/content/browser:risk_proto", |
625 "//components/autofill/content/browser:test_support", | 621 "//components/autofill/content/browser:test_support", |
626 "//components/captive_portal:test_support", | 622 "//components/captive_portal:test_support", |
627 "//components/dom_distiller/content", | 623 "//components/dom_distiller/content", |
628 "//components/dom_distiller/core:test_support", | 624 "//components/dom_distiller/core:test_support", |
629 "//components/resources", | 625 "//components/resources", |
630 "//components/strings", | 626 "//components/strings", |
631 "//components/translate/core/common", | 627 "//components/translate/core/common", |
632 "//components/user_manager:test_support", | 628 "//components/user_manager:test_support", |
633 "//crypto:platform", | 629 "//crypto:platform", |
(...skipping 1037 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1671 } | 1667 } |
1672 if (use_ozone) { | 1668 if (use_ozone) { |
1673 # crbug.com/354036 | 1669 # crbug.com/354036 |
1674 sources -= [ "../browser/chromeos/events/event_rewriter_unittest.cc" ] | 1670 sources -= [ "../browser/chromeos/events/event_rewriter_unittest.cc" ] |
1675 } | 1671 } |
1676 if (!enable_plugin_installation) { | 1672 if (!enable_plugin_installation) { |
1677 sources -= [ "../browser/plugins/plugin_installer_unittest.cc" ] | 1673 sources -= [ "../browser/plugins/plugin_installer_unittest.cc" ] |
1678 } | 1674 } |
1679 } | 1675 } |
1680 } | 1676 } |
OLD | NEW |