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 | 6 |
7 if (is_android) { | 7 if (is_android) { |
8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
10 } | 10 } |
(...skipping 637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
648 if (is_android || is_ios) { | 648 if (is_android || is_ios) { |
649 sources -= [ | 649 sources -= [ |
650 "device_form_factor_desktop.cc", | 650 "device_form_factor_desktop.cc", |
651 ] | 651 ] |
652 } | 652 } |
653 } | 653 } |
654 | 654 |
655 source_set("test_support") { | 655 source_set("test_support") { |
656 testonly = true | 656 testonly = true |
657 sources = [ | 657 sources = [ |
| 658 "test/fake_clipboard.cc", |
| 659 "test/fake_clipboard.h", |
658 "test/ui_controls.h", | 660 "test/ui_controls.h", |
659 "test/ui_controls_aura.cc", | 661 "test/ui_controls_aura.cc", |
660 "test/ui_controls_internal_win.cc", | 662 "test/ui_controls_internal_win.cc", |
661 "test/ui_controls_internal_win.h", | 663 "test/ui_controls_internal_win.h", |
662 "test/ui_controls_mac.mm", | 664 "test/ui_controls_mac.mm", |
663 "test/ui_controls_win.cc", | 665 "test/ui_controls_win.cc", |
664 ] | 666 ] |
665 | 667 |
666 public_deps = [ | 668 public_deps = [ |
667 ":base", | 669 ":base", |
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
908 "//ui/chromeos/resources", | 910 "//ui/chromeos/resources", |
909 "//ui/chromeos/strings", | 911 "//ui/chromeos/strings", |
910 "//ui/chromeos:ui_chromeos", | 912 "//ui/chromeos:ui_chromeos", |
911 "//ui/events:gesture_detection", | 913 "//ui/events:gesture_detection", |
912 "//ui/message_center:message_center", | 914 "//ui/message_center:message_center", |
913 ] | 915 ] |
914 } | 916 } |
915 } | 917 } |
916 } | 918 } |
917 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk). | 919 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk). |
OLD | NEW |