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

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

Issue 818793002: [Ozone] Fix build dependencies in ui/base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: simplify Created 6 years 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 | « no previous file | ui/base/ui_base.gyp » ('j') | ui/base/ui_base.gyp » ('J')
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/config/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 if (is_android) { 7 if (is_android) {
8 import("//build/config/android/config.gni") 8 import("//build/config/android/config.gni")
9 import("//build/config/android/rules.gni") 9 import("//build/config/android/rules.gni")
10 } 10 }
(...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after
595 } 595 }
596 if (use_ozone) { 596 if (use_ozone) {
597 sources += [ 597 sources += [
598 "cursor/cursor_loader_ozone.cc", 598 "cursor/cursor_loader_ozone.cc",
599 "cursor/cursor_loader_ozone.h", 599 "cursor/cursor_loader_ozone.h",
600 "cursor/cursor_ozone.cc", 600 "cursor/cursor_ozone.cc",
601 "cursor/ozone/bitmap_cursor_factory_ozone.cc", 601 "cursor/ozone/bitmap_cursor_factory_ozone.cc",
602 "cursor/ozone/bitmap_cursor_factory_ozone.h", 602 "cursor/ozone/bitmap_cursor_factory_ozone.h",
603 ] 603 ]
604 604
605 deps += [ "//ui/ozone:ozone_base" ] 605 deps += [
606 "//ui/ozone:ozone_base",
607 "//ui/events/ozone:events_ozone_layout",
608 ]
sadrul 2014/12/19 21:40:48 Sort
606 } 609 }
607 610
608 if (!toolkit_views) { 611 if (!toolkit_views) {
609 sources -= [ 612 sources -= [
610 "dragdrop/drag_drop_types.h", 613 "dragdrop/drag_drop_types.h",
611 "dragdrop/drop_target_event.cc", 614 "dragdrop/drop_target_event.cc",
612 "dragdrop/drop_target_event.h", 615 "dragdrop/drop_target_event.h",
613 "dragdrop/os_exchange_data.cc", 616 "dragdrop/os_exchange_data.cc",
614 "dragdrop/os_exchange_data.h", 617 "dragdrop/os_exchange_data.h",
615 "nine_image_painter_factory.cc", 618 "nine_image_painter_factory.cc",
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
899 if (is_chromeos) { 902 if (is_chromeos) {
900 sources -= [ 903 sources -= [
901 "dragdrop/os_exchange_data_provider_aurax11_unittest.cc", 904 "dragdrop/os_exchange_data_provider_aurax11_unittest.cc",
902 "x/selection_requestor_unittest.cc", 905 "x/selection_requestor_unittest.cc",
903 ] 906 ]
904 deps += [ "//chromeos" ] 907 deps += [ "//chromeos" ]
905 } 908 }
906 } 909 }
907 } 910 }
908 # TODO(GYP) Mac (ui_base_tests_bundle) and Android (ui_base_unittests_apk). 911 # TODO(GYP) Mac (ui_base_tests_bundle) and Android (ui_base_unittests_apk).
OLDNEW
« no previous file with comments | « no previous file | ui/base/ui_base.gyp » ('j') | ui/base/ui_base.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698