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