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 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
364 "//ui/gfx", | 364 "//ui/gfx", |
365 "//ui/gfx/geometry", | 365 "//ui/gfx/geometry", |
366 ] | 366 ] |
367 deps = [ | 367 deps = [ |
368 "//base:base_static", | 368 "//base:base_static", |
369 "//base:i18n", | 369 "//base:i18n", |
370 "//base/third_party/dynamic_annotations", | 370 "//base/third_party/dynamic_annotations", |
371 "//net", | 371 "//net", |
372 "//third_party/icu", | 372 "//third_party/icu", |
373 "//ui/base:ui_data_pack", | 373 "//ui/base:ui_data_pack", |
| 374 "//ui/display", |
374 "//ui/events", | 375 "//ui/events", |
375 "//ui/events/devices", | 376 "//ui/events/devices", |
376 "//ui/resources", | 377 "//ui/resources", |
377 "//ui/strings", | 378 "//ui/strings", |
378 "//url", | 379 "//url", |
379 ] | 380 ] |
380 | 381 |
381 if (is_ios) { | 382 if (is_ios) { |
382 set_sources_assignment_filter([]) | 383 set_sources_assignment_filter([]) |
383 sources += [ | 384 sources += [ |
(...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
819 "//base", | 820 "//base", |
820 "//base/test:test_support", | 821 "//base/test:test_support", |
821 "//net", | 822 "//net", |
822 "//skia", | 823 "//skia", |
823 "//testing/gmock", | 824 "//testing/gmock", |
824 "//testing/gtest", | 825 "//testing/gtest", |
825 "//third_party/icu", | 826 "//third_party/icu", |
826 "//ui/base", | 827 "//ui/base", |
827 "//ui/base:test_support", | 828 "//ui/base:test_support", |
828 "//ui/base:ui_data_pack", | 829 "//ui/base:ui_data_pack", |
| 830 "//ui/display", |
829 "//ui/events:events_base", | 831 "//ui/events:events_base", |
830 "//ui/events:test_support", | 832 "//ui/events:test_support", |
831 "//ui/gfx:test_support", | 833 "//ui/gfx:test_support", |
832 "//ui/resources", | 834 "//ui/resources", |
833 "//ui/resources:ui_test_pak", | 835 "//ui/resources:ui_test_pak", |
834 "//ui/strings", | 836 "//ui/strings", |
835 "//url", | 837 "//url", |
836 ] | 838 ] |
837 | 839 |
838 if (build_ime) { | 840 if (build_ime) { |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
954 if (is_mac) { | 956 if (is_mac) { |
955 mac_framework_bundle("ui_unittests_framework") { | 957 mac_framework_bundle("ui_unittests_framework") { |
956 testonly = true | 958 testonly = true |
957 deps = [ | 959 deps = [ |
958 "//ui/resources:ui_test_pak_bundle_data", | 960 "//ui/resources:ui_test_pak_bundle_data", |
959 ] | 961 ] |
960 info_plist = "test/framework-Info.plist" | 962 info_plist = "test/framework-Info.plist" |
961 output_name = "ui_unittests Framework" | 963 output_name = "ui_unittests Framework" |
962 } | 964 } |
963 } | 965 } |
OLD | NEW |