| 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/menu_label_accelerator_util_linux.cc", | 23 "accelerators/menu_label_accelerator_util_linux.cc", |
| 24 "accelerators/menu_label_accelerator_util_linux.h", | 24 "accelerators/menu_label_accelerator_util_linux.h", |
| 25 "accelerators/platform_accelerator.h", | 25 "accelerators/platform_accelerator.h", |
| 26 "accelerators/platform_accelerator_cocoa.h", | 26 "accelerators/platform_accelerator_cocoa.h", |
| 27 "accelerators/platform_accelerator_cocoa.mm", | 27 "accelerators/platform_accelerator_cocoa.mm", |
| 28 "android/system_ui_resource_manager.h", | |
| 29 "android/system_ui_resource_type.h", | 28 "android/system_ui_resource_type.h", |
| 30 "android/ui_base_jni_registrar.cc", | 29 "android/ui_base_jni_registrar.cc", |
| 31 "android/ui_base_jni_registrar.h", | 30 "android/ui_base_jni_registrar.h", |
| 32 "android/view_android.cc", | 31 "android/view_android.cc", |
| 33 "android/view_android.h", | 32 "android/view_android.h", |
| 34 "android/window_android.cc", | 33 "android/window_android.cc", |
| 35 "android/window_android.h", | 34 "android/window_android.h", |
| 36 "android/window_android_compositor.h", | 35 "android/window_android_compositor.h", |
| 37 "android/window_android_observer.h", | 36 "android/window_android_observer.h", |
| 38 "base_window.cc", | 37 "base_window.cc", |
| (...skipping 857 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 896 if (is_chromeos) { | 895 if (is_chromeos) { |
| 897 sources -= [ | 896 sources -= [ |
| 898 "dragdrop/os_exchange_data_provider_aurax11_unittest.cc", | 897 "dragdrop/os_exchange_data_provider_aurax11_unittest.cc", |
| 899 "x/selection_requestor_unittest.cc", | 898 "x/selection_requestor_unittest.cc", |
| 900 ] | 899 ] |
| 901 deps += [ "//chromeos" ] | 900 deps += [ "//chromeos" ] |
| 902 } | 901 } |
| 903 } | 902 } |
| 904 } | 903 } |
| 905 # TODO(GYP) Mac (ui_base_tests_bundle) and Android (ui_base_unittests_apk). | 904 # TODO(GYP) Mac (ui_base_tests_bundle) and Android (ui_base_unittests_apk). |
| OLD | NEW |