| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//ui/base/ui_features.gni") | 8 import("//ui/base/ui_features.gni") |
| 9 | 9 |
| 10 assert(use_aura) | 10 assert(use_aura) |
| (...skipping 1149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1160 deps += [ | 1160 deps += [ |
| 1161 "//chromeos", | 1161 "//chromeos", |
| 1162 "//chromeos:power_manager_proto", | 1162 "//chromeos:power_manager_proto", |
| 1163 "//chromeos:test_support_without_gmock", | 1163 "//chromeos:test_support_without_gmock", |
| 1164 "//components/quirks", | 1164 "//components/quirks", |
| 1165 "//device/bluetooth", | 1165 "//device/bluetooth", |
| 1166 "//net:net", | 1166 "//net:net", |
| 1167 "//ui/chromeos", | 1167 "//ui/chromeos", |
| 1168 "//ui/display", | 1168 "//ui/display", |
| 1169 "//ui/display:test_support", | 1169 "//ui/display:test_support", |
| 1170 "//ui/display:test_util", | |
| 1171 ] | 1170 ] |
| 1172 } | 1171 } |
| 1173 } | 1172 } |
| 1174 | 1173 |
| 1175 test("ash_unittests") { | 1174 test("ash_unittests") { |
| 1176 sources = [ | 1175 sources = [ |
| 1177 "accelerators/accelerator_commands_unittest.cc", | 1176 "accelerators/accelerator_commands_unittest.cc", |
| 1178 "accelerators/accelerator_controller_unittest.cc", | 1177 "accelerators/accelerator_controller_unittest.cc", |
| 1179 "accelerators/accelerator_filter_unittest.cc", | 1178 "accelerators/accelerator_filter_unittest.cc", |
| 1180 "accelerators/magnifier_key_scroller_unittest.cc", | 1179 "accelerators/magnifier_key_scroller_unittest.cc", |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1401 deps += [ | 1400 deps += [ |
| 1402 "//chromeos", | 1401 "//chromeos", |
| 1403 "//chromeos:power_manager_proto", | 1402 "//chromeos:power_manager_proto", |
| 1404 "//chromeos:test_support_without_gmock", | 1403 "//chromeos:test_support_without_gmock", |
| 1405 "//components/quirks", | 1404 "//components/quirks", |
| 1406 "//device/bluetooth", | 1405 "//device/bluetooth", |
| 1407 "//net:net", | 1406 "//net:net", |
| 1408 "//ui/chromeos", | 1407 "//ui/chromeos", |
| 1409 "//ui/display", | 1408 "//ui/display", |
| 1410 "//ui/display:test_support", | 1409 "//ui/display:test_support", |
| 1411 "//ui/display:test_util", | |
| 1412 ] | 1410 ] |
| 1413 } else { | 1411 } else { |
| 1414 sources -= [ | 1412 sources -= [ |
| 1415 "accelerators/magnifier_key_scroller_unittest.cc", | 1413 "accelerators/magnifier_key_scroller_unittest.cc", |
| 1416 "accelerators/spoken_feedback_toggler_unittest.cc", | 1414 "accelerators/spoken_feedback_toggler_unittest.cc", |
| 1417 | 1415 |
| 1418 # Can't resize on Windows Ash. http://crbug.com/165962 | 1416 # Can't resize on Windows Ash. http://crbug.com/165962 |
| 1419 "autoclick/autoclick_unittest.cc", | 1417 "autoclick/autoclick_unittest.cc", |
| 1420 "display/resolution_notification_controller_unittest.cc", | 1418 "display/resolution_notification_controller_unittest.cc", |
| 1421 | 1419 |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1473 if (is_win) { | 1471 if (is_win) { |
| 1474 configs -= [ "//build/config/win:console" ] | 1472 configs -= [ "//build/config/win:console" ] |
| 1475 configs += [ "//build/config/win:windowed" ] | 1473 configs += [ "//build/config/win:windowed" ] |
| 1476 deps += [ "//sandbox" ] | 1474 deps += [ "//sandbox" ] |
| 1477 } | 1475 } |
| 1478 | 1476 |
| 1479 if (is_chromeos) { | 1477 if (is_chromeos) { |
| 1480 deps += [ "//device/bluetooth" ] | 1478 deps += [ "//device/bluetooth" ] |
| 1481 } | 1479 } |
| 1482 } | 1480 } |
| OLD | NEW |