| 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 if (is_android) { | 8 if (is_android) { |
| 9 import("//build/config/android/config.gni") | 9 import("//build/config/android/config.gni") |
| 10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
| (...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 554 "device_form_factor_desktop.cc", | 554 "device_form_factor_desktop.cc", |
| 555 "idle/idle.cc", | 555 "idle/idle.cc", |
| 556 "idle/idle.h", | 556 "idle/idle.h", |
| 557 ] | 557 ] |
| 558 } | 558 } |
| 559 } | 559 } |
| 560 | 560 |
| 561 source_set("test_support") { | 561 source_set("test_support") { |
| 562 testonly = true | 562 testonly = true |
| 563 sources = [ | 563 sources = [ |
| 564 "test/nswindow_fullscreen_notification_waiter.h", |
| 565 "test/nswindow_fullscreen_notification_waiter.mm", |
| 564 "test/test_clipboard.cc", | 566 "test/test_clipboard.cc", |
| 565 "test/test_clipboard.h", | 567 "test/test_clipboard.h", |
| 566 "test/ui_controls.h", | 568 "test/ui_controls.h", |
| 567 "test/ui_controls_aura.cc", | 569 "test/ui_controls_aura.cc", |
| 568 "test/ui_controls_internal_win.cc", | 570 "test/ui_controls_internal_win.cc", |
| 569 "test/ui_controls_internal_win.h", | 571 "test/ui_controls_internal_win.h", |
| 570 "test/ui_controls_mac.mm", | 572 "test/ui_controls_mac.mm", |
| 571 "test/ui_controls_win.cc", | 573 "test/ui_controls_win.cc", |
| 572 ] | 574 ] |
| 573 | 575 |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 798 } | 800 } |
| 799 | 801 |
| 800 if (is_chromeos) { | 802 if (is_chromeos) { |
| 801 deps += [ | 803 deps += [ |
| 802 "//chromeos", | 804 "//chromeos", |
| 803 "//ui/events:dom_keycode_converter", | 805 "//ui/events:dom_keycode_converter", |
| 804 ] | 806 ] |
| 805 } | 807 } |
| 806 } | 808 } |
| 807 # TODO(GYP) Mac (ui_base_tests_bundle) | 809 # TODO(GYP) Mac (ui_base_tests_bundle) |
| OLD | NEW |