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 } |
11 | 11 |
12 build_ime = !is_ios | 12 build_ime = !is_ios |
13 | 13 |
14 component("base") { | 14 component("base") { |
15 output_name = "ui_base" | 15 output_name = "ui_base" |
16 sources = [ | 16 sources = [ |
17 "accelerators/accelerator.cc", | 17 "accelerators/accelerator.cc", |
18 "accelerators/accelerator.h", | 18 "accelerators/accelerator.h", |
19 "accelerators/accelerator_manager.cc", | 19 "accelerators/accelerator_manager.cc", |
20 "accelerators/accelerator_manager.h", | 20 "accelerators/accelerator_manager.h", |
21 "accelerators/menu_label_accelerator_util_linux.cc", | 21 "accelerators/menu_label_accelerator_util_linux.cc", |
22 "accelerators/menu_label_accelerator_util_linux.h", | 22 "accelerators/menu_label_accelerator_util_linux.h", |
23 "accelerators/platform_accelerator.h", | 23 "accelerators/platform_accelerator.h", |
24 "accelerators/platform_accelerator_cocoa.h", | 24 "accelerators/platform_accelerator_cocoa.h", |
25 "accelerators/platform_accelerator_cocoa.mm", | 25 "accelerators/platform_accelerator_cocoa.mm", |
26 "android/system_ui_resource_manager.h", | 26 "android/system_ui_resource_manager.h", |
| 27 "android/system_ui_resource_type.h", |
27 "android/ui_base_jni_registrar.cc", | 28 "android/ui_base_jni_registrar.cc", |
28 "android/ui_base_jni_registrar.h", | 29 "android/ui_base_jni_registrar.h", |
29 "android/view_android.cc", | 30 "android/view_android.cc", |
30 "android/view_android.h", | 31 "android/view_android.h", |
31 "android/window_android.cc", | 32 "android/window_android.cc", |
32 "android/window_android.h", | 33 "android/window_android.h", |
33 "android/window_android_compositor.h", | 34 "android/window_android_compositor.h", |
34 "android/window_android_observer.h", | 35 "android/window_android_observer.h", |
35 "base_window.cc", | 36 "base_window.cc", |
36 "base_window.h", | 37 "base_window.h", |
(...skipping 871 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
908 "//ui/chromeos/resources", | 909 "//ui/chromeos/resources", |
909 "//ui/chromeos/strings", | 910 "//ui/chromeos/strings", |
910 "//ui/chromeos:ui_chromeos", | 911 "//ui/chromeos:ui_chromeos", |
911 "//ui/events:gesture_detection", | 912 "//ui/events:gesture_detection", |
912 "//ui/message_center:message_center", | 913 "//ui/message_center:message_center", |
913 ] | 914 ] |
914 } | 915 } |
915 } | 916 } |
916 } | 917 } |
917 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk). | 918 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk). |
OLD | NEW |