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