| 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/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 582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 593 "dragdrop/drop_target_event.h", | 593 "dragdrop/drop_target_event.h", |
| 594 "dragdrop/os_exchange_data.cc", | 594 "dragdrop/os_exchange_data.cc", |
| 595 "dragdrop/os_exchange_data.h", | 595 "dragdrop/os_exchange_data.h", |
| 596 "nine_image_painter_factory.cc", | 596 "nine_image_painter_factory.cc", |
| 597 "nine_image_painter_factory.h", | 597 "nine_image_painter_factory.h", |
| 598 ] | 598 ] |
| 599 } | 599 } |
| 600 | 600 |
| 601 if (is_android) { | 601 if (is_android) { |
| 602 sources -= [ | 602 sources -= [ |
| 603 "cursor/image_cursors.cc", |
| 604 "cursor/image_cursors.h", |
| 603 "default_theme_provider.cc", | 605 "default_theme_provider.cc", |
| 604 "dragdrop/drag_utils.cc", | 606 "dragdrop/drag_utils.cc", |
| 605 "dragdrop/drag_utils.h", | 607 "dragdrop/drag_utils.h", |
| 606 "l10n/l10n_font_util.cc", | 608 "l10n/l10n_font_util.cc", |
| 607 "models/button_menu_item_model.cc", | 609 "models/button_menu_item_model.cc", |
| 608 "models/dialog_model.cc", | 610 "models/dialog_model.cc", |
| 609 "theme_provider.cc", | 611 "theme_provider.cc", |
| 610 "touch/touch_editing_controller.cc", | 612 "touch/touch_editing_controller.cc", |
| 611 "ui_base_types.cc", | 613 "ui_base_types.cc", |
| 612 ] | 614 ] |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 894 deps += [ | 896 deps += [ |
| 895 "//chromeos", | 897 "//chromeos", |
| 896 "//ui/aura:test_support", | 898 "//ui/aura:test_support", |
| 897 "//ui/events:gesture_detection", | 899 "//ui/events:gesture_detection", |
| 898 "//ui/chromeos:ui_chromeos", | 900 "//ui/chromeos:ui_chromeos", |
| 899 ] | 901 ] |
| 900 } | 902 } |
| 901 } | 903 } |
| 902 } | 904 } |
| 903 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk). | 905 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk). |
| OLD | NEW |