| 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 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 ":ui_features", | 376 ":ui_features", |
| 377 "//base", | 377 "//base", |
| 378 "//skia", | 378 "//skia", |
| 379 "//ui/gfx", | 379 "//ui/gfx", |
| 380 "//ui/gfx/geometry", | 380 "//ui/gfx/geometry", |
| 381 ] | 381 ] |
| 382 deps = [ | 382 deps = [ |
| 383 "//base:base_static", | 383 "//base:base_static", |
| 384 "//base:i18n", | 384 "//base:i18n", |
| 385 "//base/third_party/dynamic_annotations", | 385 "//base/third_party/dynamic_annotations", |
| 386 "//components/prefs", |
| 386 "//net", | 387 "//net", |
| 387 "//third_party/icu", | 388 "//third_party/icu", |
| 388 "//third_party/zlib:zlib", | 389 "//third_party/zlib:zlib", |
| 389 "//ui/display", | 390 "//ui/display", |
| 390 "//ui/events", | 391 "//ui/events", |
| 391 "//ui/events/devices", | 392 "//ui/events/devices", |
| 392 "//ui/resources", | 393 "//ui/resources", |
| 393 "//ui/strings", | 394 "//ui/strings", |
| 394 "//url", | 395 "//url", |
| 395 ] | 396 ] |
| (...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 990 if (is_mac) { | 991 if (is_mac) { |
| 991 mac_framework_bundle("ui_unittests_framework") { | 992 mac_framework_bundle("ui_unittests_framework") { |
| 992 testonly = true | 993 testonly = true |
| 993 deps = [ | 994 deps = [ |
| 994 "//ui/resources:ui_test_pak_bundle_data", | 995 "//ui/resources:ui_test_pak_bundle_data", |
| 995 ] | 996 ] |
| 996 info_plist = "test/framework-Info.plist" | 997 info_plist = "test/framework-Info.plist" |
| 997 output_name = "ui_unittests Framework" | 998 output_name = "ui_unittests Framework" |
| 998 } | 999 } |
| 999 } | 1000 } |
| OLD | NEW |