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/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 1466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1477 sources += rebase_path( | 1477 sources += rebase_path( |
1478 unit_gypi_values.chrome_unit_tests_session_service_sources, | 1478 unit_gypi_values.chrome_unit_tests_session_service_sources, |
1479 ".", | 1479 ".", |
1480 "//chrome") | 1480 "//chrome") |
1481 } | 1481 } |
1482 if (enable_webrtc) { | 1482 if (enable_webrtc) { |
1483 sources += rebase_path(unit_gypi_values.chrome_unit_tests_webrtc_sources, | 1483 sources += rebase_path(unit_gypi_values.chrome_unit_tests_webrtc_sources, |
1484 ".", | 1484 ".", |
1485 "//chrome") | 1485 "//chrome") |
1486 } | 1486 } |
| 1487 if (enable_media_router) { |
| 1488 deps += [ "//chrome/browser/media/router:unit_tests" ] |
| 1489 } |
1487 if (is_chromeos) { | 1490 if (is_chromeos) { |
1488 sources += | 1491 sources += |
1489 rebase_path(unit_gypi_values.chrome_unit_tests_chromeos_sources, | 1492 rebase_path(unit_gypi_values.chrome_unit_tests_chromeos_sources, |
1490 ".", | 1493 ".", |
1491 "//chrome") | 1494 "//chrome") |
1492 deps += [ | 1495 deps += [ |
1493 "//ash/resources", | 1496 "//ash/resources", |
1494 "//ui/chromeos/resources", | 1497 "//ui/chromeos/resources", |
1495 ] | 1498 ] |
1496 sources -= [ | 1499 sources -= [ |
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1734 # ] | 1737 # ] |
1735 # } | 1738 # } |
1736 # if (!is_mac) { | 1739 # if (!is_mac) { |
1737 # sources -= [ | 1740 # sources -= [ |
1738 # "perf/mach_ports_performancetest.cc", | 1741 # "perf/mach_ports_performancetest.cc", |
1739 # ] | 1742 # ] |
1740 # } | 1743 # } |
1741 # } | 1744 # } |
1742 } | 1745 } |
1743 } | 1746 } |
OLD | NEW |