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_history.cc", | 19 "accelerators/accelerator_history.cc", |
20 "accelerators/accelerator_history.h", | 20 "accelerators/accelerator_history.h", |
21 "accelerators/accelerator_manager.cc", | 21 "accelerators/accelerator_manager.cc", |
22 "accelerators/accelerator_manager.h", | 22 "accelerators/accelerator_manager.h", |
| 23 "accelerators/accelerator_processor.h", |
23 "accelerators/menu_label_accelerator_util_linux.cc", | 24 "accelerators/menu_label_accelerator_util_linux.cc", |
24 "accelerators/menu_label_accelerator_util_linux.h", | 25 "accelerators/menu_label_accelerator_util_linux.h", |
25 "accelerators/platform_accelerator.h", | 26 "accelerators/platform_accelerator.h", |
26 "accelerators/platform_accelerator_cocoa.h", | 27 "accelerators/platform_accelerator_cocoa.h", |
27 "accelerators/platform_accelerator_cocoa.mm", | 28 "accelerators/platform_accelerator_cocoa.mm", |
28 "android/system_ui_resource_type.h", | 29 "android/system_ui_resource_type.h", |
29 "android/ui_base_jni_registrar.cc", | 30 "android/ui_base_jni_registrar.cc", |
30 "android/ui_base_jni_registrar.h", | 31 "android/ui_base_jni_registrar.h", |
31 "android/view_android.cc", | 32 "android/view_android.cc", |
32 "android/view_android.h", | 33 "android/view_android.h", |
(...skipping 865 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
898 "x/selection_requestor_unittest.cc", | 899 "x/selection_requestor_unittest.cc", |
899 ] | 900 ] |
900 } | 901 } |
901 | 902 |
902 if (is_chromeos) { | 903 if (is_chromeos) { |
903 deps += [ "//chromeos" ] | 904 deps += [ "//chromeos" ] |
904 } | 905 } |
905 } | 906 } |
906 } | 907 } |
907 # TODO(GYP) Mac (ui_base_tests_bundle) and Android (ui_base_unittests_apk). | 908 # TODO(GYP) Mac (ui_base_tests_bundle) and Android (ui_base_unittests_apk). |
OLD | NEW |