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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/sanitizers/sanitizers.gni") | 7 import("//build/config/sanitizers/sanitizers.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//ui/base/ui_features.gni") | 10 import("//ui/base/ui_features.gni") |
| (...skipping 625 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 636 "test/scoped_fake_full_keyboard_access.h", | 636 "test/scoped_fake_full_keyboard_access.h", |
| 637 "test/scoped_fake_full_keyboard_access.mm", | 637 "test/scoped_fake_full_keyboard_access.mm", |
| 638 "test/scoped_fake_nswindow_focus.h", | 638 "test/scoped_fake_nswindow_focus.h", |
| 639 "test/scoped_fake_nswindow_focus.mm", | 639 "test/scoped_fake_nswindow_focus.mm", |
| 640 "test/scoped_fake_nswindow_fullscreen.h", | 640 "test/scoped_fake_nswindow_fullscreen.h", |
| 641 "test/scoped_fake_nswindow_fullscreen.mm", | 641 "test/scoped_fake_nswindow_fullscreen.mm", |
| 642 "test/scoped_preferred_scroller_style_mac.h", | 642 "test/scoped_preferred_scroller_style_mac.h", |
| 643 "test/scoped_preferred_scroller_style_mac.mm", | 643 "test/scoped_preferred_scroller_style_mac.mm", |
| 644 "test/test_clipboard.cc", | 644 "test/test_clipboard.cc", |
| 645 "test/test_clipboard.h", | 645 "test/test_clipboard.h", |
| 646 "test/user_interactive_test_case.cc", | |
| 647 "test/user_interactive_test_case.h", | |
|
tapted
2016/10/18 06:01:12
this should go in the sources = list above, so it'
Patti Lor
2016/10/18 23:41:48
Done - thanks!!
| |
| 646 "test/windowed_nsnotification_observer.h", | 648 "test/windowed_nsnotification_observer.h", |
| 647 "test/windowed_nsnotification_observer.mm", | 649 "test/windowed_nsnotification_observer.mm", |
| 648 ] | 650 ] |
| 649 } else { | 651 } else { |
| 650 sources += [ | 652 sources += [ |
| 651 "test/ios/keyboard_appearance_listener.h", | 653 "test/ios/keyboard_appearance_listener.h", |
| 652 "test/ios/keyboard_appearance_listener.mm", | 654 "test/ios/keyboard_appearance_listener.mm", |
| 653 "test/ios/ui_view_test_utils.h", | 655 "test/ios/ui_view_test_utils.h", |
| 654 "test/ios/ui_view_test_utils.mm", | 656 "test/ios/ui_view_test_utils.mm", |
| 657 "test/user_interactive_test_case_mac.mm", | |
| 655 ] | 658 ] |
| 656 } | 659 } |
| 657 | 660 |
| 658 public_deps = [ | 661 public_deps = [ |
| 659 ":base", | 662 ":base", |
| 660 ] | 663 ] |
| 661 deps = [ | 664 deps = [ |
| 662 "//base", | 665 "//base", |
| 663 "//base/test:test_config", | 666 "//base/test:test_config", |
| 664 "//skia", | 667 "//skia", |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 952 if (is_mac) { | 955 if (is_mac) { |
| 953 mac_framework_bundle("ui_unittests_framework") { | 956 mac_framework_bundle("ui_unittests_framework") { |
| 954 testonly = true | 957 testonly = true |
| 955 deps = [ | 958 deps = [ |
| 956 "//ui/resources:ui_test_pak_bundle_data", | 959 "//ui/resources:ui_test_pak_bundle_data", |
| 957 ] | 960 ] |
| 958 info_plist = "test/framework-Info.plist" | 961 info_plist = "test/framework-Info.plist" |
| 959 output_name = "ui_unittests Framework" | 962 output_name = "ui_unittests Framework" |
| 960 } | 963 } |
| 961 } | 964 } |
| OLD | NEW |