| 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 1191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1202 sources = [ | 1202 sources = [ |
| 1203 "accelerators/accelerator_commands_unittest.cc", | 1203 "accelerators/accelerator_commands_unittest.cc", |
| 1204 "accelerators/accelerator_controller_unittest.cc", | 1204 "accelerators/accelerator_controller_unittest.cc", |
| 1205 "accelerators/accelerator_filter_unittest.cc", | 1205 "accelerators/accelerator_filter_unittest.cc", |
| 1206 "accelerators/magnifier_key_scroller_unittest.cc", | 1206 "accelerators/magnifier_key_scroller_unittest.cc", |
| 1207 "accelerators/spoken_feedback_toggler_unittest.cc", | 1207 "accelerators/spoken_feedback_toggler_unittest.cc", |
| 1208 "app_list/app_list_presenter_delegate_unittest.cc", | 1208 "app_list/app_list_presenter_delegate_unittest.cc", |
| 1209 "ash_touch_exploration_manager_chromeos_unittest.cc", | 1209 "ash_touch_exploration_manager_chromeos_unittest.cc", |
| 1210 "aura/pointer_watcher_adapter_unittest.cc", | 1210 "aura/pointer_watcher_adapter_unittest.cc", |
| 1211 "autoclick/autoclick_unittest.cc", | 1211 "autoclick/autoclick_unittest.cc", |
| 1212 "common/devtools/ash_devtools_unittest.cc", |
| 1212 | 1213 |
| 1213 # TODO: convert to use AshTest http://crbug.com/654489. | 1214 # TODO: convert to use AshTest http://crbug.com/654489. |
| 1214 "common/frame/caption_buttons/frame_caption_button_container_view_unittest.c
c", | 1215 "common/frame/caption_buttons/frame_caption_button_container_view_unittest.c
c", |
| 1215 "common/frame/custom_frame_view_ash_unittest.cc", | 1216 "common/frame/custom_frame_view_ash_unittest.cc", |
| 1216 "common/frame/default_header_painter_unittest.cc", | 1217 "common/frame/default_header_painter_unittest.cc", |
| 1217 | 1218 |
| 1218 # TODO: convert to use AshTest http://crbug.com/654491. | 1219 # TODO: convert to use AshTest http://crbug.com/654491. |
| 1219 "common/material_design/material_design_controller_unittest.cc", | 1220 "common/material_design/material_design_controller_unittest.cc", |
| 1220 | 1221 |
| 1221 # TODO: convert to use AshTest http://crbug.com/654492. | 1222 # TODO: convert to use AshTest http://crbug.com/654492. |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1500 if (is_win) { | 1501 if (is_win) { |
| 1501 configs -= [ "//build/config/win:console" ] | 1502 configs -= [ "//build/config/win:console" ] |
| 1502 configs += [ "//build/config/win:windowed" ] | 1503 configs += [ "//build/config/win:windowed" ] |
| 1503 deps += [ "//sandbox" ] | 1504 deps += [ "//sandbox" ] |
| 1504 } | 1505 } |
| 1505 | 1506 |
| 1506 if (is_chromeos) { | 1507 if (is_chromeos) { |
| 1507 deps += [ "//device/bluetooth" ] | 1508 deps += [ "//device/bluetooth" ] |
| 1508 } | 1509 } |
| 1509 } | 1510 } |
| OLD | NEW |