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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
9 import("//build/module_args/v8.gni") | 9 import("//build/module_args/v8.gni") |
10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
(...skipping 1725 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1736 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 1736 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
1737 | 1737 |
1738 deps = [ | 1738 deps = [ |
1739 ":test_support", | 1739 ":test_support", |
1740 "//base", | 1740 "//base", |
1741 "//base:i18n", | 1741 "//base:i18n", |
1742 "//base/test:test_support", | 1742 "//base/test:test_support", |
1743 "//chrome/browser", | 1743 "//chrome/browser", |
1744 "//chrome/renderer", | 1744 "//chrome/renderer", |
1745 "//media/cast:test_support", | 1745 "//media/cast:test_support", |
| 1746 "//testing/gmock", |
1746 "//testing/gtest", | 1747 "//testing/gtest", |
1747 "//testing/perf", | 1748 "//testing/perf", |
1748 ] | 1749 ] |
1749 | 1750 |
1750 if (is_win) { | 1751 if (is_win) { |
1751 configs -= [ "//build/config/win:default_incremental_linking" ] | 1752 configs -= [ "//build/config/win:default_incremental_linking" ] |
1752 configs += | 1753 configs += |
1753 [ "//build/config/win:default_large_module_incremental_linking" ] | 1754 [ "//build/config/win:default_large_module_incremental_linking" ] |
1754 } else { | 1755 } else { |
1755 sources -= [ | 1756 sources -= [ |
1756 "../app/chrome_command_ids.h", | 1757 "../app/chrome_command_ids.h", |
1757 | 1758 |
1758 #"../app/chrome_dll.rc", | 1759 #"../app/chrome_dll.rc", |
1759 #"../app/chrome_dll_resource.h", | 1760 #"../app/chrome_dll_resource.h", |
1760 "../app/chrome_version.rc.version", | 1761 "../app/chrome_version.rc.version", |
1761 ] | 1762 ] |
1762 } | 1763 } |
1763 if (!is_mac) { | 1764 if (!is_mac) { |
1764 sources -= [ "perf/mach_ports_performancetest.cc" ] | 1765 sources -= [ "perf/mach_ports_performancetest.cc" ] |
1765 } | 1766 } |
1766 | 1767 |
1767 if (cld_version == 0 || cld_version == 2) { | 1768 if (cld_version == 0 || cld_version == 2) { |
1768 # Use whatever CLD2 data access mode that the | 1769 # Use whatever CLD2 data access mode that the |
1769 # application embedder is using. | 1770 # application embedder is using. |
1770 deps += [ "//third_party/cld_2:cld2_platform_impl" ] | 1771 deps += [ "//third_party/cld_2:cld2_platform_impl" ] |
1771 } | 1772 } |
1772 } | 1773 } |
1773 } | 1774 } |
1774 } | 1775 } |
OLD | NEW |