Chromium Code Reviews| 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 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 404 "wm/maximize_mode/maximize_mode_controller_unittest.cc", | 404 "wm/maximize_mode/maximize_mode_controller_unittest.cc", |
| 405 | 405 |
| 406 # Can't resize on Windows Ash. http://crbug.com/165962 | 406 # Can't resize on Windows Ash. http://crbug.com/165962 |
| 407 "autoclick/autoclick_unittest.cc", | 407 "autoclick/autoclick_unittest.cc", |
| 408 "magnifier/magnification_controller_unittest.cc", | 408 "magnifier/magnification_controller_unittest.cc", |
| 409 "sticky_keys/sticky_keys_overlay_unittest.cc", | 409 "sticky_keys/sticky_keys_overlay_unittest.cc", |
| 410 "system/tray/media_security/multi_profile_media_tray_item_unittest.cc", | 410 "system/tray/media_security/multi_profile_media_tray_item_unittest.cc", |
| 411 "virtual_keyboard_controller_unittest.cc", | 411 "virtual_keyboard_controller_unittest.cc", |
| 412 "wm/workspace/workspace_window_resizer_unittest.cc", | 412 "wm/workspace/workspace_window_resizer_unittest.cc", |
| 413 ] | 413 ] |
| 414 sources += [ | |
| 415 #'<(SHARED_INTERMEDIATE_DIR)/ui/resources/ui_unscaled_resources.rc', TODO (GYP) | |
|
brettw
2016/05/04 19:51:28
This comes automiatically from depending on ui/res
| |
| 416 ] | |
| 417 } | 414 } |
| 418 | 415 |
| 419 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 416 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 420 | 417 |
| 421 if (!use_x11) { | 418 if (!use_x11) { |
| 422 sources -= [ "host/ash_window_tree_host_x11_unittest.cc" ] | 419 sources -= [ "host/ash_window_tree_host_x11_unittest.cc" ] |
| 423 } | 420 } |
| 424 if (is_chromeos) { | 421 if (is_chromeos) { |
| 425 sources += [ "first_run/first_run_helper_unittest.cc" ] | 422 sources += [ "first_run/first_run_helper_unittest.cc" ] |
| 426 deps += [ | 423 deps += [ |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 480 configs += [ "//build/config/win:windowed" ] | 477 configs += [ "//build/config/win:windowed" ] |
| 481 deps += [ "//sandbox" ] | 478 deps += [ "//sandbox" ] |
| 482 } | 479 } |
| 483 | 480 |
| 484 if (is_chromeos) { | 481 if (is_chromeos) { |
| 485 deps += [ "//device/bluetooth" ] | 482 deps += [ "//device/bluetooth" ] |
| 486 } | 483 } |
| 487 } | 484 } |
| 488 # When adding support for isolates, please have a look at run-time dependencies | 485 # When adding support for isolates, please have a look at run-time dependencies |
| 489 # in the ash_unittests_run target in ash.gyp. | 486 # in the ash_unittests_run target in ash.gyp. |
| OLD | NEW |