| 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 875 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 886 deps += [ | 886 deps += [ |
| 887 "//ui/events/platform/x11", | 887 "//ui/events/platform/x11", |
| 888 "//ui/gfx/x", | 888 "//ui/gfx/x", |
| 889 ] | 889 ] |
| 890 | 890 |
| 891 data_deps += [ "//tools/xdisplaycheck" ] | 891 data_deps += [ "//tools/xdisplaycheck" ] |
| 892 } | 892 } |
| 893 | 893 |
| 894 if (is_mac) { | 894 if (is_mac) { |
| 895 deps += [ | 895 deps += [ |
| 896 ":ui_unittests Framework", | 896 ":ui_unittests_framework", |
| 897 "//third_party/mozilla", | 897 "//third_party/mozilla", |
| 898 ] | 898 ] |
| 899 } | 899 } |
| 900 | 900 |
| 901 if (use_aura || toolkit_views) { | 901 if (use_aura || toolkit_views) { |
| 902 sources += [ "dragdrop/os_exchange_data_unittest.cc" ] | 902 sources += [ "dragdrop/os_exchange_data_unittest.cc" ] |
| 903 | 903 |
| 904 deps += [ | 904 deps += [ |
| 905 "//ui/events", | 905 "//ui/events", |
| 906 "//ui/events/platform", | 906 "//ui/events/platform", |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 944 if (is_mac) { | 944 if (is_mac) { |
| 945 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] | 945 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] |
| 946 | 946 |
| 947 if (is_asan && symbol_level == 0) { | 947 if (is_asan && symbol_level == 0) { |
| 948 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] | 948 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] |
| 949 } | 949 } |
| 950 } | 950 } |
| 951 } | 951 } |
| 952 | 952 |
| 953 if (is_mac) { | 953 if (is_mac) { |
| 954 mac_framework_bundle("ui_unittests Framework") { | 954 mac_framework_bundle("ui_unittests_framework") { |
| 955 testonly = true | 955 testonly = true |
| 956 deps = [ | 956 deps = [ |
| 957 "//ui/resources:ui_test_pak_bundle_data", | 957 "//ui/resources:ui_test_pak_bundle_data", |
| 958 ] | 958 ] |
| 959 info_plist = "test/framework-Info.plist" | 959 info_plist = "test/framework-Info.plist" |
| 960 output_name = "ui_unittests Framework" |
| 960 } | 961 } |
| 961 } | 962 } |
| OLD | NEW |