Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(514)

Side by Side Diff: chrome/test/BUILD.gn

Issue 975123003: Add remaining trivial targets for the Linux GN build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clean up to make new stuff linux-only for now Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
(...skipping 1655 matching lines...) Expand 10 before | Expand all | Expand 10 after
1666 deps += [ "//ui/app_list:test_support" ] 1666 deps += [ "//ui/app_list:test_support" ]
1667 } 1667 }
1668 if (use_ozone) { 1668 if (use_ozone) {
1669 # crbug.com/354036 1669 # crbug.com/354036
1670 sources -= [ "../browser/chromeos/events/event_rewriter_unittest.cc" ] 1670 sources -= [ "../browser/chromeos/events/event_rewriter_unittest.cc" ]
1671 } 1671 }
1672 if (!enable_plugin_installation) { 1672 if (!enable_plugin_installation) {
1673 sources -= [ "../browser/plugins/plugin_installer_unittest.cc" ] 1673 sources -= [ "../browser/plugins/plugin_installer_unittest.cc" ]
1674 } 1674 }
1675 } 1675 }
1676
1677 if (is_linux && !is_chromeos) {
1678 # TODO(GYP): Figure out which of these work and are needed on other
1679 # platforms.
1680 test("chrome_app_unittests") {
1681 sources = [
1682 "../app/chrome_watcher_client_unittest_win.cc",
1683 "../app/chrome_watcher_client_win.cc",
1684 "../app/chrome_watcher_command_line_unittest_win.cc",
1685 "../app/chrome_watcher_command_line_win.cc",
1686 "../app/delay_load_hook_unittest_win.cc",
1687 "../app/delay_load_hook_win.cc",
1688 "../app/delay_load_hook_win.h",
1689 "../app/signature_validator_win.cc",
1690 "../app/signature_validator_win.h",
1691 "../app/signature_validator_win_unittest.cc",
1692 "../common/crash_keys.cc",
1693 "../common/crash_keys.h",
1694 ]
1695
1696 deps = [
1697 ":test_support",
1698 "//chrome/browser",
1699 "//chrome/child",
1700 "//base/test:run_all_unittests",
1701 "//base/test:test_support",
1702 ]
1703 }
1704
1705 # TODO(GYP): Finish me...
1706 # source_set("performance_browser_tests") {
1707 # testonly = true
1708 # sources =
1709 # rebase_path(chrome_tests_gypi_values.performance_browser_tests_sources ,
1710 # ".",
1711 # "//chrome")
1712 # deps = [
1713 # ":perf",
1714 # ":test_support",
1715 # "//base",
1716 # "//base:i18n",
1717 # "//base/test:test_support",
1718 # "//chrome/browser",
1719 # "//chrome/renderer",
1720 # "//media/cast:cast_test_utility",
1721 # "//testing/gtest",
1722 # ]
1723 #
1724 # if (!is_win) {
1725 # sources -= [
1726 # "../app/chrome_command_ids.h",
1727 # # "../app/chrome_dll.rc",
1728 # #"../app/chrome_dll_resource.h",
1729 # #"../app/chrome_version.rc.version",
1730 # ]
1731 # }
1732 # if (!is_mac) {
1733 # sources -= [
1734 # "perf/mach_ports_performancetest.cc",
1735 # ]
1736 # }
1737 # }
1738
1739 source_set("perf") {
1740 testonly = true
1741 sources = [
1742 "perf/perf_test.cc",
1743 ]
1744 deps = [
1745 "//base",
1746 "//testing/perf",
1747 ]
1748 }
1749 }
1676 } 1750 }
OLDNEW
« BUILD.gn ('K') | « chrome/chrome_tests_unit.gypi ('k') | chrome/test/perf/perf_test.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698