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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1667 } | 1670 } |
1668 if (use_ozone) { | 1671 if (use_ozone) { |
1669 # crbug.com/354036 | 1672 # crbug.com/354036 |
1670 sources -= [ "../browser/chromeos/events/event_rewriter_unittest.cc" ] | 1673 sources -= [ "../browser/chromeos/events/event_rewriter_unittest.cc" ] |
1671 } | 1674 } |
1672 if (!enable_plugin_installation) { | 1675 if (!enable_plugin_installation) { |
1673 sources -= [ "../browser/plugins/plugin_installer_unittest.cc" ] | 1676 sources -= [ "../browser/plugins/plugin_installer_unittest.cc" ] |
1674 } | 1677 } |
1675 } | 1678 } |
1676 } | 1679 } |
OLD | NEW |