Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1717)

Side by Side Diff: ui/base/BUILD.gn

Issue 2803873003: Linux native notifications: Support closing and updating notifications (Closed)
Patch Set: glib_signals.h -> glib_signal.h to fix gn gen --check Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/ui/libgtkui/gtk_util.h ('k') | ui/base/glib/scoped_gobject.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_signal.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
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 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/libgtkui/gtk_util.h ('k') | ui/base/glib/scoped_gobject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698