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

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: fix other debug/component woes 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
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chrome/tools/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 if (cld_version == 0 || cld_version == 2) {
1704 # Use whatever CLD2 data access mode that the
1705 # application embedder is using.
1706 deps += [ "//third_party/cld_2:cld2_platform_impl" ]
1707 }
1708 }
1709 # TODO(GYP): Finish me...
1710 # source_set("performance_browser_tests") {
1711 # testonly = true
1712 # sources =
1713 # rebase_path(chrome_tests_gypi_values.performance_browser_tests_sources ,
1714 # ".",
1715 # "//chrome")
1716 # deps = [
1717 # ":perf",
1718 # ":test_support",
1719 # "//base",
1720 # "//base:i18n",
1721 # "//base/test:test_support",
1722 # "//chrome/browser",
1723 # "//chrome/renderer",
1724 # "//media/cast:cast_test_utility",
1725 # "//testing/gtest",
1726 # ]
1727 #
1728 # if (!is_win) {
1729 # sources -= [
1730 # "../app/chrome_command_ids.h",
1731 # # "../app/chrome_dll.rc",
1732 # #"../app/chrome_dll_resource.h",
1733 # #"../app/chrome_version.rc.version",
1734 # ]
1735 # }
1736 # if (!is_mac) {
1737 # sources -= [
1738 # "perf/mach_ports_performancetest.cc",
1739 # ]
1740 # }
1741 # }
1742 }
1676 } 1743 }
OLDNEW
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chrome/tools/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698