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

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

Issue 1045133002: Add performance_tests_browser to the GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remoting_targets
Patch Set: make performance_browser_tests properly linux-only for now Created 5 years, 8 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 | « build/gn_migration.gypi ('k') | no next file » | 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 1695 matching lines...) Expand 10 before | Expand all | Expand 10 after
1706 "//chrome/child", 1706 "//chrome/child",
1707 "//base/test:run_all_unittests", 1707 "//base/test:run_all_unittests",
1708 "//base/test:test_support", 1708 "//base/test:test_support",
1709 ] 1709 ]
1710 if (cld_version == 0 || cld_version == 2) { 1710 if (cld_version == 0 || cld_version == 2) {
1711 # Use whatever CLD2 data access mode that the 1711 # Use whatever CLD2 data access mode that the
1712 # application embedder is using. 1712 # application embedder is using.
1713 deps += [ "//third_party/cld_2:cld2_platform_impl" ] 1713 deps += [ "//third_party/cld_2:cld2_platform_impl" ]
1714 } 1714 }
1715 } 1715 }
1716 # TODO(GYP): Finish me... 1716
1717 # source_set("performance_browser_tests") { 1717 test("performance_browser_tests") {
1718 # testonly = true 1718 sources = rebase_path(
1719 # sources = 1719 chrome_tests_gypi_values.performance_browser_tests_sources,
1720 # rebase_path(chrome_tests_gypi_values.performance_browser_tests_sources , 1720 ".",
1721 # ".", 1721 "//chrome")
1722 # "//chrome") 1722
1723 # deps = [ 1723 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ]
1724 # ":perf", 1724
1725 # ":test_support", 1725 deps = [
1726 # "//base", 1726 ":test_support",
1727 # "//base:i18n", 1727 "//base",
1728 # "//base/test:test_support", 1728 "//base:i18n",
1729 # "//chrome/browser", 1729 "//base/test:test_support",
1730 # "//chrome/renderer", 1730 "//chrome/browser",
1731 # "//media/cast:cast_test_utility", 1731 "//chrome/renderer",
1732 # "//testing/gtest", 1732 "//media/cast:test_support",
1733 # ] 1733 "//testing/gtest",
1734 # 1734 "//testing/perf",
1735 # if (!is_win) { 1735 ]
1736 # sources -= [ 1736
1737 # "../app/chrome_command_ids.h", 1737 if (!is_win) {
1738 # # "../app/chrome_dll.rc", 1738 sources -= [
1739 # #"../app/chrome_dll_resource.h", 1739 "../app/chrome_command_ids.h",
1740 # #"../app/chrome_version.rc.version", 1740
1741 # ] 1741 #"../app/chrome_dll.rc",
1742 # } 1742 #"../app/chrome_dll_resource.h",
1743 # if (!is_mac) { 1743 "../app/chrome_version.rc.version",
1744 # sources -= [ 1744 ]
1745 # "perf/mach_ports_performancetest.cc", 1745 }
1746 # ] 1746 if (!is_mac) {
1747 # } 1747 sources -= [ "perf/mach_ports_performancetest.cc" ]
1748 # } 1748 }
1749
1750 if (cld_version == 0 || cld_version == 2) {
1751 # Use whatever CLD2 data access mode that the
1752 # application embedder is using.
1753 deps += [ "//third_party/cld_2:cld2_platform_impl" ]
1754 }
1755 }
1749 } 1756 }
1750 } 1757 }
OLDNEW
« no previous file with comments | « build/gn_migration.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698