| 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 1298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1309 "wm/window_animations_unittest.cc", | 1309 "wm/window_animations_unittest.cc", |
| 1310 "wm/window_cycle_controller_unittest.cc", | 1310 "wm/window_cycle_controller_unittest.cc", |
| 1311 "wm/window_manager_unittest.cc", | 1311 "wm/window_manager_unittest.cc", |
| 1312 "wm/window_modality_controller_unittest.cc", | 1312 "wm/window_modality_controller_unittest.cc", |
| 1313 "wm/window_positioner_unittest.cc", | 1313 "wm/window_positioner_unittest.cc", |
| 1314 "wm/window_state_unittest.cc", | 1314 "wm/window_state_unittest.cc", |
| 1315 "wm/window_util_unittest.cc", | 1315 "wm/window_util_unittest.cc", |
| 1316 "wm/workspace/magnetism_matcher_unittest.cc", | 1316 "wm/workspace/magnetism_matcher_unittest.cc", |
| 1317 "wm/workspace/multi_window_resize_controller_unittest.cc", | 1317 "wm/workspace/multi_window_resize_controller_unittest.cc", |
| 1318 "wm/workspace/workspace_event_handler_unittest.cc", | 1318 "wm/workspace/workspace_event_handler_unittest.cc", |
| 1319 "wm/workspace/workspace_layout_manager_keyboard_unittest.cc", |
| 1319 "wm/workspace/workspace_window_resizer_unittest.cc", | 1320 "wm/workspace/workspace_window_resizer_unittest.cc", |
| 1320 "wm/workspace_controller_test_helper.cc", | 1321 "wm/workspace_controller_test_helper.cc", |
| 1321 "wm/workspace_controller_test_helper.h", | 1322 "wm/workspace_controller_test_helper.h", |
| 1322 "wm/workspace_controller_unittest.cc", | 1323 "wm/workspace_controller_unittest.cc", |
| 1323 ] | 1324 ] |
| 1324 configs += [ | 1325 configs += [ |
| 1325 "//build/config:precompiled_headers", | 1326 "//build/config:precompiled_headers", |
| 1326 "//build/config/compiler:no_size_t_to_int_warning", | 1327 "//build/config/compiler:no_size_t_to_int_warning", |
| 1327 ] | 1328 ] |
| 1328 | 1329 |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1465 if (is_win) { | 1466 if (is_win) { |
| 1466 configs -= [ "//build/config/win:console" ] | 1467 configs -= [ "//build/config/win:console" ] |
| 1467 configs += [ "//build/config/win:windowed" ] | 1468 configs += [ "//build/config/win:windowed" ] |
| 1468 deps += [ "//sandbox" ] | 1469 deps += [ "//sandbox" ] |
| 1469 } | 1470 } |
| 1470 | 1471 |
| 1471 if (is_chromeos) { | 1472 if (is_chromeos) { |
| 1472 deps += [ "//device/bluetooth" ] | 1473 deps += [ "//device/bluetooth" ] |
| 1473 } | 1474 } |
| 1474 } | 1475 } |
| OLD | NEW |