| 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 1205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1216 "common/system/chromeos/palette/palette_tool_manager_unittest.cc", | 1216 "common/system/chromeos/palette/palette_tool_manager_unittest.cc", |
| 1217 "common/system/chromeos/palette/tools/create_note_unittest.cc", | 1217 "common/system/chromeos/palette/tools/create_note_unittest.cc", |
| 1218 "common/system/chromeos/palette/tools/screenshot_unittest.cc", | 1218 "common/system/chromeos/palette/tools/screenshot_unittest.cc", |
| 1219 "common/system/chromeos/power/power_status_unittest.cc", | 1219 "common/system/chromeos/power/power_status_unittest.cc", |
| 1220 "common/system/chromeos/power/power_status_view_unittest.cc", | 1220 "common/system/chromeos/power/power_status_view_unittest.cc", |
| 1221 "common/system/chromeos/power/tray_power_unittest.cc", | 1221 "common/system/chromeos/power/tray_power_unittest.cc", |
| 1222 "common/system/chromeos/screen_security/screen_tray_item_unittest.cc", | 1222 "common/system/chromeos/screen_security/screen_tray_item_unittest.cc", |
| 1223 "common/system/chromeos/session/logout_confirmation_controller_unittest.cc", | 1223 "common/system/chromeos/session/logout_confirmation_controller_unittest.cc", |
| 1224 "common/system/chromeos/session/tray_session_length_limit_unittest.cc", | 1224 "common/system/chromeos/session/tray_session_length_limit_unittest.cc", |
| 1225 "common/system/chromeos/supervised/tray_supervised_user_unittest.cc", | 1225 "common/system/chromeos/supervised/tray_supervised_user_unittest.cc", |
| 1226 "common/system/date/date_view_unittest.cc", | |
| 1227 "common/system/ime/tray_ime_chromeos_unittest.cc", | 1226 "common/system/ime/tray_ime_chromeos_unittest.cc", |
| 1228 "common/system/tiles/tray_tiles_unittest.cc", | 1227 "common/system/tiles/tray_tiles_unittest.cc", |
| 1229 "common/system/tray/system_tray_unittest.cc", | 1228 "common/system/tray/system_tray_unittest.cc", |
| 1230 "common/system/tray/tray_details_view_unittest.cc", | 1229 "common/system/tray/tray_details_view_unittest.cc", |
| 1231 "common/system/user/tray_user_unittest.cc", | 1230 "common/system/user/tray_user_unittest.cc", |
| 1232 | 1231 |
| 1233 # TODO: convert to use AshTest http://crbug.com/654517. | 1232 # TODO: convert to use AshTest http://crbug.com/654517. |
| 1234 "common/wallpaper/wallpaper_controller_unittest.cc", | 1233 "common/wallpaper/wallpaper_controller_unittest.cc", |
| 1235 | 1234 |
| 1236 # TODO: convert to use AshTest http://crbug.com/654524. | 1235 # TODO: convert to use AshTest http://crbug.com/654524. |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1478 if (is_win) { | 1477 if (is_win) { |
| 1479 configs -= [ "//build/config/win:console" ] | 1478 configs -= [ "//build/config/win:console" ] |
| 1480 configs += [ "//build/config/win:windowed" ] | 1479 configs += [ "//build/config/win:windowed" ] |
| 1481 deps += [ "//sandbox" ] | 1480 deps += [ "//sandbox" ] |
| 1482 } | 1481 } |
| 1483 | 1482 |
| 1484 if (is_chromeos) { | 1483 if (is_chromeos) { |
| 1485 deps += [ "//device/bluetooth" ] | 1484 deps += [ "//device/bluetooth" ] |
| 1486 } | 1485 } |
| 1487 } | 1486 } |
| OLD | NEW |