| 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 555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 566 "test/nswindow_fullscreen_notification_waiter.h", | 566 "test/nswindow_fullscreen_notification_waiter.h", |
| 567 "test/nswindow_fullscreen_notification_waiter.mm", | 567 "test/nswindow_fullscreen_notification_waiter.mm", |
| 568 "test/test_clipboard.cc", | 568 "test/test_clipboard.cc", |
| 569 "test/test_clipboard.h", | 569 "test/test_clipboard.h", |
| 570 "test/ui_controls.h", | 570 "test/ui_controls.h", |
| 571 "test/ui_controls_aura.cc", | 571 "test/ui_controls_aura.cc", |
| 572 "test/ui_controls_internal_win.cc", | 572 "test/ui_controls_internal_win.cc", |
| 573 "test/ui_controls_internal_win.h", | 573 "test/ui_controls_internal_win.h", |
| 574 "test/ui_controls_mac.mm", | 574 "test/ui_controls_mac.mm", |
| 575 "test/ui_controls_win.cc", | 575 "test/ui_controls_win.cc", |
| 576 "test/windowed_nsnotification_observer.h", |
| 577 "test/windowed_nsnotification_observer.mm", |
| 576 ] | 578 ] |
| 577 | 579 |
| 578 public_deps = [ | 580 public_deps = [ |
| 579 ":base", | 581 ":base", |
| 580 ] | 582 ] |
| 581 deps = [ | 583 deps = [ |
| 582 "//base", | 584 "//base", |
| 583 "//skia", | 585 "//skia", |
| 584 "//testing/gtest", | 586 "//testing/gtest", |
| 585 "//ui/events:events_base", | 587 "//ui/events:events_base", |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 803 } | 805 } |
| 804 | 806 |
| 805 if (is_chromeos) { | 807 if (is_chromeos) { |
| 806 deps += [ | 808 deps += [ |
| 807 "//chromeos", | 809 "//chromeos", |
| 808 "//ui/events:dom_keycode_converter", | 810 "//ui/events:dom_keycode_converter", |
| 809 ] | 811 ] |
| 810 } | 812 } |
| 811 } | 813 } |
| 812 # TODO(GYP) Mac (ui_base_tests_bundle) | 814 # TODO(GYP) Mac (ui_base_tests_bundle) |
| OLD | NEW |