| 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 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 472 if (!use_aura || !is_linux) { | 472 if (!use_aura || !is_linux) { |
| 473 sources -= [ "resource/resource_bundle_auralinux.cc" ] | 473 sources -= [ "resource/resource_bundle_auralinux.cc" ] |
| 474 } | 474 } |
| 475 | 475 |
| 476 if (is_linux) { | 476 if (is_linux) { |
| 477 deps += [ "//build/linux:fontconfig" ] | 477 deps += [ "//build/linux:fontconfig" ] |
| 478 } | 478 } |
| 479 | 479 |
| 480 if (use_glib) { | 480 if (use_glib) { |
| 481 configs += [ "//build/config/linux:glib" ] | 481 configs += [ "//build/config/linux:glib" ] |
| 482 sources += [ |
| 483 "glib/glib_integers.h", |
| 484 "glib/glib_signals.h", |
| 485 "glib/scoped_gobject.h", |
| 486 ] |
| 482 } | 487 } |
| 483 | 488 |
| 484 if (is_linux) { | 489 if (is_linux) { |
| 485 if (!toolkit_views && !use_aura) { | 490 if (!toolkit_views && !use_aura) { |
| 486 sources -= [ | 491 sources -= [ |
| 487 "dragdrop/drag_utils.cc", | 492 "dragdrop/drag_utils.cc", |
| 488 "dragdrop/drag_utils.h", | 493 "dragdrop/drag_utils.h", |
| 489 ] | 494 ] |
| 490 } | 495 } |
| 491 } | 496 } |
| (...skipping 501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 993 if (is_mac) { | 998 if (is_mac) { |
| 994 mac_framework_bundle("ui_unittests_framework") { | 999 mac_framework_bundle("ui_unittests_framework") { |
| 995 testonly = true | 1000 testonly = true |
| 996 deps = [ | 1001 deps = [ |
| 997 "//ui/resources:ui_test_pak_bundle_data", | 1002 "//ui/resources:ui_test_pak_bundle_data", |
| 998 ] | 1003 ] |
| 999 info_plist = "test/framework-Info.plist" | 1004 info_plist = "test/framework-Info.plist" |
| 1000 output_name = "ui_unittests Framework" | 1005 output_name = "ui_unittests Framework" |
| 1001 } | 1006 } |
| 1002 } | 1007 } |
| OLD | NEW |