| 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 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 582 "models/button_menu_item_model.cc", | 582 "models/button_menu_item_model.cc", |
| 583 "models/dialog_model.cc", | 583 "models/dialog_model.cc", |
| 584 "theme_provider.cc", | 584 "theme_provider.cc", |
| 585 "touch/touch_editing_controller.cc", | 585 "touch/touch_editing_controller.cc", |
| 586 "ui_base_types.cc", | 586 "ui_base_types.cc", |
| 587 ] | 587 ] |
| 588 } | 588 } |
| 589 | 589 |
| 590 # Aura clipboard. | 590 # Aura clipboard. |
| 591 if (use_aura) { | 591 if (use_aura) { |
| 592 if (use_x11) { | 592 if (use_clipboard_aurax11) { |
| 593 sources += [ | 593 sources += [ |
| 594 "clipboard/clipboard_aurax11.cc", | 594 "clipboard/clipboard_aurax11.cc", |
| 595 "clipboard/clipboard_aurax11.h", | 595 "clipboard/clipboard_aurax11.h", |
| 596 ] | 596 ] |
| 597 } else if (!is_win && !is_android) { | 597 } else if (!is_win && !is_android) { |
| 598 # This file is used for all non-X11, non-Windows, non-Android aura Builds. | 598 # This file is used for all non-X11, non-Windows, non-Android aura Builds. |
| 599 sources += [ | 599 sources += [ |
| 600 "clipboard/clipboard_aura.cc", | 600 "clipboard/clipboard_aura.cc", |
| 601 "clipboard/clipboard_aura.h", | 601 "clipboard/clipboard_aura.h", |
| 602 ] | 602 ] |
| (...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 945 if (is_mac) { | 945 if (is_mac) { |
| 946 mac_framework_bundle("ui_unittests_framework") { | 946 mac_framework_bundle("ui_unittests_framework") { |
| 947 testonly = true | 947 testonly = true |
| 948 deps = [ | 948 deps = [ |
| 949 "//ui/resources:ui_test_pak_bundle_data", | 949 "//ui/resources:ui_test_pak_bundle_data", |
| 950 ] | 950 ] |
| 951 info_plist = "test/framework-Info.plist" | 951 info_plist = "test/framework-Info.plist" |
| 952 output_name = "ui_unittests Framework" | 952 output_name = "ui_unittests Framework" |
| 953 } | 953 } |
| 954 } | 954 } |
| OLD | NEW |