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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 "resource/resource_bundle_mac.mm", | 209 "resource/resource_bundle_mac.mm", |
210 "resource/resource_bundle_win.cc", | 210 "resource/resource_bundle_win.cc", |
211 "resource/resource_bundle_win.h", | 211 "resource/resource_bundle_win.h", |
212 "resource/resource_data_dll_win.cc", | 212 "resource/resource_data_dll_win.cc", |
213 "resource/resource_data_dll_win.h", | 213 "resource/resource_data_dll_win.h", |
214 "resource/resource_handle.h", | 214 "resource/resource_handle.h", |
215 "text/bytes_formatting.cc", | 215 "text/bytes_formatting.cc", |
216 "text/bytes_formatting.h", | 216 "text/bytes_formatting.h", |
217 "theme_provider.cc", | 217 "theme_provider.cc", |
218 "theme_provider.h", | 218 "theme_provider.h", |
| 219 "touch/selection_bound.cc", |
| 220 "touch/selection_bound.h", |
219 "touch/touch_device.h", | 221 "touch/touch_device.h", |
220 "touch/touch_editing_controller.cc", | 222 "touch/touch_editing_controller.cc", |
221 "touch/touch_editing_controller.h", | 223 "touch/touch_editing_controller.h", |
222 "touch/touch_enabled.cc", | 224 "touch/touch_enabled.cc", |
223 "touch/touch_enabled.h", | 225 "touch/touch_enabled.h", |
224 "ui_base_export.h", | 226 "ui_base_export.h", |
225 "ui_base_exports.cc", | 227 "ui_base_exports.cc", |
226 "ui_base_paths.cc", | 228 "ui_base_paths.cc", |
227 "ui_base_paths.h", | 229 "ui_base_paths.h", |
228 "ui_base_switches.cc", | 230 "ui_base_switches.cc", |
(...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
758 "cocoa/menu_controller_unittest.mm", | 760 "cocoa/menu_controller_unittest.mm", |
759 "cocoa/nsgraphics_context_additions_unittest.mm", | 761 "cocoa/nsgraphics_context_additions_unittest.mm", |
760 "cocoa/nsview_additions_unittest.mm", | 762 "cocoa/nsview_additions_unittest.mm", |
761 "cocoa/tracking_area_unittest.mm", | 763 "cocoa/tracking_area_unittest.mm", |
762 "dragdrop/os_exchange_data_provider_aurax11_unittest.cc", | 764 "dragdrop/os_exchange_data_provider_aurax11_unittest.cc", |
763 "models/list_model_unittest.cc", | 765 "models/list_model_unittest.cc", |
764 "models/list_selection_model_unittest.cc", | 766 "models/list_selection_model_unittest.cc", |
765 "models/tree_node_model_unittest.cc", | 767 "models/tree_node_model_unittest.cc", |
766 "test/data/resource.h", | 768 "test/data/resource.h", |
767 "text/bytes_formatting_unittest.cc", | 769 "text/bytes_formatting_unittest.cc", |
768 "touch/touch_editing_controller_unittest.cc", | 770 "touch/selection_bound_unittest.cc", |
769 "view_prop_unittest.cc", | 771 "view_prop_unittest.cc", |
770 "webui/web_ui_util_unittest.cc", | 772 "webui/web_ui_util_unittest.cc", |
771 "x/selection_requestor_unittest.cc", | 773 "x/selection_requestor_unittest.cc", |
772 ] | 774 ] |
773 } | 775 } |
774 | 776 |
775 if (build_ime) { | 777 if (build_ime) { |
776 sources += [ | 778 sources += [ |
777 "ime/candidate_window_unittest.cc", | 779 "ime/candidate_window_unittest.cc", |
778 "ime/chromeos/character_composer_unittest.cc", | 780 "ime/chromeos/character_composer_unittest.cc", |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
905 "dragdrop/os_exchange_data_provider_aurax11_unittest.cc", | 907 "dragdrop/os_exchange_data_provider_aurax11_unittest.cc", |
906 "x/selection_requestor_unittest.cc", | 908 "x/selection_requestor_unittest.cc", |
907 ] | 909 ] |
908 deps += [ | 910 deps += [ |
909 "//chromeos", | 911 "//chromeos", |
910 ] | 912 ] |
911 } | 913 } |
912 } | 914 } |
913 } | 915 } |
914 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk). | 916 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk). |
OLD | NEW |