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 1505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1516 unit_gypi_values.chrome_unit_tests_session_service_sources, | 1516 unit_gypi_values.chrome_unit_tests_session_service_sources, |
1517 ".", | 1517 ".", |
1518 "//chrome") | 1518 "//chrome") |
1519 } | 1519 } |
1520 if (enable_media_router) { | 1520 if (enable_media_router) { |
1521 sources += | 1521 sources += |
1522 rebase_path(unit_gypi_values.chrome_unit_tests_media_router_sources, | 1522 rebase_path(unit_gypi_values.chrome_unit_tests_media_router_sources, |
1523 ".", | 1523 ".", |
1524 "//chrome") | 1524 "//chrome") |
1525 deps += [ "//chrome/browser/media/router:test_support" ] | 1525 deps += [ "//chrome/browser/media/router:test_support" ] |
| 1526 if (!toolkit_views) { |
| 1527 sources -= [ "../browser/ui/views/media_router/media_router_ui_browserte
st.cc" ] |
| 1528 } |
1526 } | 1529 } |
1527 if (enable_webrtc) { | 1530 if (enable_webrtc) { |
1528 sources += rebase_path(unit_gypi_values.chrome_unit_tests_webrtc_sources, | 1531 sources += rebase_path(unit_gypi_values.chrome_unit_tests_webrtc_sources, |
1529 ".", | 1532 ".", |
1530 "//chrome") | 1533 "//chrome") |
1531 } | 1534 } |
1532 if (is_chromeos) { | 1535 if (is_chromeos) { |
1533 sources += | 1536 sources += |
1534 rebase_path(unit_gypi_values.chrome_unit_tests_chromeos_sources, | 1537 rebase_path(unit_gypi_values.chrome_unit_tests_chromeos_sources, |
1535 ".", | 1538 ".", |
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1823 "//third_party/mojo/src/mojo/edk/system", | 1826 "//third_party/mojo/src/mojo/edk/system", |
1824 ] | 1827 ] |
1825 | 1828 |
1826 if (!is_android && use_ash) { | 1829 if (!is_android && use_ash) { |
1827 sources += | 1830 sources += |
1828 rebase_path(unit_gypi_values.chrome_test_support_unit_ash_sources, | 1831 rebase_path(unit_gypi_values.chrome_test_support_unit_ash_sources, |
1829 ".", | 1832 ".", |
1830 "//chrome") | 1833 "//chrome") |
1831 } | 1834 } |
1832 } | 1835 } |
OLD | NEW |