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

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

Issue 2498733002: Remove some global UI defines (Closed)
Patch Set: Merge Created 4 years, 1 month 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 | « tools/gn/docs/cookbook.md ('k') | no next file » | 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 580 matching lines...) Expand 10 before | Expand all | Expand 10 after
591 "models/button_menu_item_model.cc", 591 "models/button_menu_item_model.cc",
592 "models/dialog_model.cc", 592 "models/dialog_model.cc",
593 "theme_provider.cc", 593 "theme_provider.cc",
594 "touch/touch_editing_controller.cc", 594 "touch/touch_editing_controller.cc",
595 "ui_base_types.cc", 595 "ui_base_types.cc",
596 ] 596 ]
597 } 597 }
598 598
599 # Aura clipboard. 599 # Aura clipboard.
600 if (use_aura) { 600 if (use_aura) {
601 if (use_clipboard_aurax11) { 601 if (use_x11 && is_desktop_linux) {
602 sources += [ 602 sources += [
603 "clipboard/clipboard_aurax11.cc", 603 "clipboard/clipboard_aurax11.cc",
604 "clipboard/clipboard_aurax11.h", 604 "clipboard/clipboard_aurax11.h",
605 ] 605 ]
606 } else if (!is_win && !is_android) { 606 } else if (!is_win && !is_android) {
607 # This file is used for all non-X11, non-Windows, non-Android aura Builds. 607 # This file is used for all non-X11, non-Windows, non-Android aura Builds.
608 sources += [ 608 sources += [
609 "clipboard/clipboard_aura.cc", 609 "clipboard/clipboard_aura.cc",
610 "clipboard/clipboard_aura.h", 610 "clipboard/clipboard_aura.h",
611 ] 611 ]
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
960 if (is_mac) { 960 if (is_mac) {
961 mac_framework_bundle("ui_unittests_framework") { 961 mac_framework_bundle("ui_unittests_framework") {
962 testonly = true 962 testonly = true
963 deps = [ 963 deps = [
964 "//ui/resources:ui_test_pak_bundle_data", 964 "//ui/resources:ui_test_pak_bundle_data",
965 ] 965 ]
966 info_plist = "test/framework-Info.plist" 966 info_plist = "test/framework-Info.plist"
967 output_name = "ui_unittests Framework" 967 output_name = "ui_unittests Framework"
968 } 968 }
969 } 969 }
OLDNEW
« no previous file with comments | « tools/gn/docs/cookbook.md ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698