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 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
428 sources += [ | 428 sources += [ |
429 "idle/idle_query_x11.cc", | 429 "idle/idle_query_x11.cc", |
430 "idle/idle_query_x11.h", | 430 "idle/idle_query_x11.h", |
431 "idle/screensaver_window_finder_x11.cc", | 431 "idle/screensaver_window_finder_x11.cc", |
432 "idle/screensaver_window_finder_x11.h", | 432 "idle/screensaver_window_finder_x11.h", |
433 ] | 433 ] |
434 configs += [ "//build/config/linux:xscrnsaver" ] | 434 configs += [ "//build/config/linux:xscrnsaver" ] |
435 } | 435 } |
436 deps += [ | 436 deps += [ |
437 "//ui/events/devices/x11", | 437 "//ui/events/devices/x11", |
| 438 "//ui/events/keycodes:x11", |
438 "//ui/gfx/x", | 439 "//ui/gfx/x", |
439 ] | 440 ] |
440 } | 441 } |
441 | 442 |
442 if (!use_aura || !is_linux) { | 443 if (!use_aura || !is_linux) { |
443 sources -= [ "resource/resource_bundle_auralinux.cc" ] | 444 sources -= [ "resource/resource_bundle_auralinux.cc" ] |
444 } | 445 } |
445 | 446 |
446 if (use_aura && is_win) { | 447 if (use_aura && is_win) { |
447 sources -= [ "dragdrop/drag_utils_aura.cc" ] | 448 sources -= [ "dragdrop/drag_utils_aura.cc" ] |
(...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
961 if (is_mac) { | 962 if (is_mac) { |
962 mac_framework_bundle("ui_unittests_framework") { | 963 mac_framework_bundle("ui_unittests_framework") { |
963 testonly = true | 964 testonly = true |
964 deps = [ | 965 deps = [ |
965 "//ui/resources:ui_test_pak_bundle_data", | 966 "//ui/resources:ui_test_pak_bundle_data", |
966 ] | 967 ] |
967 info_plist = "test/framework-Info.plist" | 968 info_plist = "test/framework-Info.plist" |
968 output_name = "ui_unittests Framework" | 969 output_name = "ui_unittests Framework" |
969 } | 970 } |
970 } | 971 } |
OLD | NEW |