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/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
10 import("//chrome/chrome_tests.gni") | 10 import("//chrome/chrome_tests.gni") |
(...skipping 1768 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1779 deps += [ | 1779 deps += [ |
1780 "//third_party/google_toolbox_for_mac", | 1780 "//third_party/google_toolbox_for_mac", |
1781 "//third_party/ocmock", | 1781 "//third_party/ocmock", |
1782 ] | 1782 ] |
1783 | 1783 |
1784 # TODO(mark): We really want this for all non-static library targets, | 1784 # TODO(mark): We really want this for all non-static library targets, |
1785 # but when we tried to pull it up to the common.gypi level, it broke | 1785 # but when we tried to pull it up to the common.gypi level, it broke |
1786 # other things like the ui and startup tests. *shrug* | 1786 # other things like the ui and startup tests. *shrug* |
1787 ldflags = [ "-Wl,-ObjC" ] | 1787 ldflags = [ "-Wl,-ObjC" ] |
1788 } | 1788 } |
| 1789 if (is_mac || is_android) { |
| 1790 sources += rebase_path( |
| 1791 chrome_tests_unit_gypi_values.chrome_unit_tests_mac_android_source
s, |
| 1792 ".", |
| 1793 "//chrome") |
| 1794 } |
1789 if (!is_mac && !is_ios) { | 1795 if (!is_mac && !is_ios) { |
1790 deps += [ | 1796 deps += [ |
1791 "//chrome/tools/convert_dict:lib", | 1797 "//chrome/tools/convert_dict:lib", |
1792 "//chrome:packed_extra_resources", | 1798 "//chrome:packed_extra_resources", |
1793 "//chrome:packed_resources", | 1799 "//chrome:packed_resources", |
1794 "//third_party/hunspell", | 1800 "//third_party/hunspell", |
1795 ] | 1801 ] |
1796 } | 1802 } |
1797 if (is_win || is_mac) { | 1803 if (is_win || is_mac) { |
1798 sources += rebase_path( | 1804 sources += rebase_path( |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2008 "//third_party/mojo/src/mojo/edk/system", | 2014 "//third_party/mojo/src/mojo/edk/system", |
2009 ] | 2015 ] |
2010 | 2016 |
2011 if (!is_android && use_ash) { | 2017 if (!is_android && use_ash) { |
2012 sources += rebase_path( | 2018 sources += rebase_path( |
2013 chrome_tests_unit_gypi_values.chrome_test_support_unit_ash_sources, | 2019 chrome_tests_unit_gypi_values.chrome_test_support_unit_ash_sources, |
2014 ".", | 2020 ".", |
2015 "//chrome") | 2021 "//chrome") |
2016 } | 2022 } |
2017 } | 2023 } |
OLD | NEW |