| 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 1479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1490 sources += rebase_path( | 1490 sources += rebase_path( |
| 1491 unit_gypi_values.chrome_unit_tests_session_service_sources, | 1491 unit_gypi_values.chrome_unit_tests_session_service_sources, |
| 1492 ".", | 1492 ".", |
| 1493 "//chrome") | 1493 "//chrome") |
| 1494 } | 1494 } |
| 1495 if (enable_webrtc) { | 1495 if (enable_webrtc) { |
| 1496 sources += rebase_path(unit_gypi_values.chrome_unit_tests_webrtc_sources, | 1496 sources += rebase_path(unit_gypi_values.chrome_unit_tests_webrtc_sources, |
| 1497 ".", | 1497 ".", |
| 1498 "//chrome") | 1498 "//chrome") |
| 1499 } | 1499 } |
| 1500 if (enable_media_router) { |
| 1501 deps += [ "//chrome/browser/media/router:unit_tests" ] |
| 1502 } |
| 1500 if (is_chromeos) { | 1503 if (is_chromeos) { |
| 1501 sources += | 1504 sources += |
| 1502 rebase_path(unit_gypi_values.chrome_unit_tests_chromeos_sources, | 1505 rebase_path(unit_gypi_values.chrome_unit_tests_chromeos_sources, |
| 1503 ".", | 1506 ".", |
| 1504 "//chrome") | 1507 "//chrome") |
| 1505 deps += [ | 1508 deps += [ |
| 1506 "//ash/resources", | 1509 "//ash/resources", |
| 1507 "//ui/chromeos/resources", | 1510 "//ui/chromeos/resources", |
| 1508 ] | 1511 ] |
| 1509 sources -= [ | 1512 sources -= [ |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1680 } | 1683 } |
| 1681 if (use_ozone) { | 1684 if (use_ozone) { |
| 1682 # crbug.com/354036 | 1685 # crbug.com/354036 |
| 1683 sources -= [ "../browser/chromeos/events/event_rewriter_unittest.cc" ] | 1686 sources -= [ "../browser/chromeos/events/event_rewriter_unittest.cc" ] |
| 1684 } | 1687 } |
| 1685 if (!enable_plugin_installation) { | 1688 if (!enable_plugin_installation) { |
| 1686 sources -= [ "../browser/plugins/plugin_installer_unittest.cc" ] | 1689 sources -= [ "../browser/plugins/plugin_installer_unittest.cc" ] |
| 1687 } | 1690 } |
| 1688 } | 1691 } |
| 1689 } | 1692 } |
| OLD | NEW |