| 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 "cursor/cursor.h", | 143 "cursor/cursor.h", |
| 144 "cursor/cursor_android.cc", | 144 "cursor/cursor_android.cc", |
| 145 "cursor/cursor_loader.h", | 145 "cursor/cursor_loader.h", |
| 146 "cursor/cursor_win.cc", | 146 "cursor/cursor_win.cc", |
| 147 "default_style.h", | 147 "default_style.h", |
| 148 "default_theme_provider_mac.mm", | 148 "default_theme_provider_mac.mm", |
| 149 "device_form_factor.h", | 149 "device_form_factor.h", |
| 150 "device_form_factor_android.cc", | 150 "device_form_factor_android.cc", |
| 151 "device_form_factor_desktop.cc", | 151 "device_form_factor_desktop.cc", |
| 152 "device_form_factor_ios.mm", | 152 "device_form_factor_ios.mm", |
| 153 "dragdrop/drag_and_drop_url_utils.cc", |
| 154 "dragdrop/drag_and_drop_url_utils.h", |
| 153 "dragdrop/drag_drop_types.h", | 155 "dragdrop/drag_drop_types.h", |
| 154 "dragdrop/drag_drop_types_mac.mm", | 156 "dragdrop/drag_drop_types_mac.mm", |
| 155 "dragdrop/drag_drop_types_win.cc", | 157 "dragdrop/drag_drop_types_win.cc", |
| 156 "dragdrop/drag_source_win.cc", | 158 "dragdrop/drag_source_win.cc", |
| 157 "dragdrop/drag_source_win.h", | 159 "dragdrop/drag_source_win.h", |
| 158 "dragdrop/drag_utils_win.cc", | 160 "dragdrop/drag_utils_win.cc", |
| 159 "dragdrop/drop_target_event.cc", | 161 "dragdrop/drop_target_event.cc", |
| 160 "dragdrop/drop_target_event.h", | 162 "dragdrop/drop_target_event.h", |
| 161 "dragdrop/drop_target_win.cc", | 163 "dragdrop/drop_target_win.cc", |
| 162 "dragdrop/drop_target_win.h", | 164 "dragdrop/drop_target_win.h", |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 "//skia", | 370 "//skia", |
| 369 "//ui/events:events_base", | 371 "//ui/events:events_base", |
| 370 "//ui/events/platform", | 372 "//ui/events/platform", |
| 371 "//ui/gfx", | 373 "//ui/gfx", |
| 372 "//ui/gfx/geometry", | 374 "//ui/gfx/geometry", |
| 373 ] | 375 ] |
| 374 deps = [ | 376 deps = [ |
| 375 "//base:base_static", | 377 "//base:base_static", |
| 376 "//base:i18n", | 378 "//base:i18n", |
| 377 "//base/third_party/dynamic_annotations", | 379 "//base/third_party/dynamic_annotations", |
| 380 "//components/url_formatter", |
| 378 "//net", | 381 "//net", |
| 379 "//third_party/icu", | 382 "//third_party/icu", |
| 380 "//third_party/zlib:zlib", | 383 "//third_party/zlib:zlib", |
| 381 "//ui/display", | 384 "//ui/display", |
| 382 "//ui/events", | 385 "//ui/events", |
| 383 "//ui/events/devices", | 386 "//ui/events/devices", |
| 384 "//ui/resources", | 387 "//ui/resources", |
| 385 "//ui/strings", | 388 "//ui/strings", |
| 386 "//url", | 389 "//url", |
| 387 ] | 390 ] |
| (...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 953 if (is_mac) { | 956 if (is_mac) { |
| 954 mac_framework_bundle("ui_unittests_framework") { | 957 mac_framework_bundle("ui_unittests_framework") { |
| 955 testonly = true | 958 testonly = true |
| 956 deps = [ | 959 deps = [ |
| 957 "//ui/resources:ui_test_pak_bundle_data", | 960 "//ui/resources:ui_test_pak_bundle_data", |
| 958 ] | 961 ] |
| 959 info_plist = "test/framework-Info.plist" | 962 info_plist = "test/framework-Info.plist" |
| 960 output_name = "ui_unittests Framework" | 963 output_name = "ui_unittests Framework" |
| 961 } | 964 } |
| 962 } | 965 } |
| OLD | NEW |