| 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", |
| 20 "accelerators/accelerator_history.h", |
| 19 "accelerators/accelerator_manager.cc", | 21 "accelerators/accelerator_manager.cc", |
| 20 "accelerators/accelerator_manager.h", | 22 "accelerators/accelerator_manager.h", |
| 21 "accelerators/menu_label_accelerator_util_linux.cc", | 23 "accelerators/menu_label_accelerator_util_linux.cc", |
| 22 "accelerators/menu_label_accelerator_util_linux.h", | 24 "accelerators/menu_label_accelerator_util_linux.h", |
| 23 "accelerators/platform_accelerator.h", | 25 "accelerators/platform_accelerator.h", |
| 24 "accelerators/platform_accelerator_cocoa.h", | 26 "accelerators/platform_accelerator_cocoa.h", |
| 25 "accelerators/platform_accelerator_cocoa.mm", | 27 "accelerators/platform_accelerator_cocoa.mm", |
| 26 "android/system_ui_resource_manager.h", | 28 "android/system_ui_resource_manager.h", |
| 27 "android/system_ui_resource_type.h", | 29 "android/system_ui_resource_type.h", |
| 28 "android/ui_base_jni_registrar.cc", | 30 "android/ui_base_jni_registrar.cc", |
| (...skipping 874 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 903 "dragdrop/os_exchange_data_provider_aurax11_unittest.cc", | 905 "dragdrop/os_exchange_data_provider_aurax11_unittest.cc", |
| 904 "x/selection_requestor_unittest.cc", | 906 "x/selection_requestor_unittest.cc", |
| 905 ] | 907 ] |
| 906 deps += [ | 908 deps += [ |
| 907 "//chromeos", | 909 "//chromeos", |
| 908 ] | 910 ] |
| 909 } | 911 } |
| 910 } | 912 } |
| 911 } | 913 } |
| 912 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk). | 914 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk). |
| OLD | NEW |