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/compiler/compiler.gni") | 5 import("//build/config/compiler/compiler.gni") |
6 import("//build/config/sanitizers/sanitizers.gni") | 6 import("//build/config/sanitizers/sanitizers.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
9 | 9 |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 "resource/resource_handle.h", | 195 "resource/resource_handle.h", |
196 "template_expressions.cc", | 196 "template_expressions.cc", |
197 "template_expressions.h", | 197 "template_expressions.h", |
198 "theme_provider.cc", | 198 "theme_provider.cc", |
199 "theme_provider.h", | 199 "theme_provider.h", |
200 "touch/selection_bound.cc", | 200 "touch/selection_bound.cc", |
201 "touch/selection_bound.h", | 201 "touch/selection_bound.h", |
202 "touch/touch_device.h", | 202 "touch/touch_device.h", |
203 "touch/touch_editing_controller.cc", | 203 "touch/touch_editing_controller.cc", |
204 "touch/touch_editing_controller.h", | 204 "touch/touch_editing_controller.h", |
| 205 "touch/touch_enabled.cc", |
| 206 "touch/touch_enabled.h", |
205 "ui_base_export.h", | 207 "ui_base_export.h", |
206 "ui_base_exports.cc", | 208 "ui_base_exports.cc", |
207 "ui_base_paths.cc", | 209 "ui_base_paths.cc", |
208 "ui_base_paths.h", | 210 "ui_base_paths.h", |
209 "ui_base_switches.cc", | 211 "ui_base_switches.cc", |
210 "ui_base_switches.h", | 212 "ui_base_switches.h", |
211 "ui_base_switches_util.cc", | 213 "ui_base_switches_util.cc", |
212 "ui_base_switches_util.h", | 214 "ui_base_switches_util.h", |
213 "ui_base_types.cc", | 215 "ui_base_types.cc", |
214 "ui_base_types.h", | 216 "ui_base_types.h", |
(...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
728 "test/data/resource.h", | 730 "test/data/resource.h", |
729 "text/bytes_formatting_unittest.cc", | 731 "text/bytes_formatting_unittest.cc", |
730 "touch/selection_bound_unittest.cc", | 732 "touch/selection_bound_unittest.cc", |
731 "webui/web_ui_util_unittest.cc", | 733 "webui/web_ui_util_unittest.cc", |
732 ] | 734 ] |
733 } | 735 } |
734 | 736 |
735 if (build_ime) { | 737 if (build_ime) { |
736 sources += [ | 738 sources += [ |
737 "ime/candidate_window_unittest.cc", | 739 "ime/candidate_window_unittest.cc", |
| 740 "ime/chromeos/character_composer_unittest.cc", |
738 "ime/composition_text_unittest.cc", | 741 "ime/composition_text_unittest.cc", |
739 "ime/chromeos/character_composer_unittest.cc", | |
740 "ime/input_method_base_unittest.cc", | 742 "ime/input_method_base_unittest.cc", |
741 "ime/input_method_chromeos_unittest.cc", | 743 "ime/input_method_chromeos_unittest.cc", |
742 "ime/remote_input_method_win_unittest.cc", | 744 "ime/remote_input_method_win_unittest.cc", |
743 "ime/win/imm32_manager_unittest.cc", | 745 "ime/win/imm32_manager_unittest.cc", |
744 "ime/win/tsf_input_scope_unittest.cc", | 746 "ime/win/tsf_input_scope_unittest.cc", |
745 ] | 747 ] |
746 if (is_linux && use_aura && !is_chromeos) { | 748 if (is_linux && use_aura && !is_chromeos) { |
747 sources += [ "ime/input_method_auralinux_unittest.cc" ] | 749 sources += [ "ime/input_method_auralinux_unittest.cc" ] |
748 } | 750 } |
749 if (is_mac) { | 751 if (is_mac) { |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
889 } | 891 } |
890 if (is_mac) { | 892 if (is_mac) { |
891 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] | 893 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] |
892 | 894 |
893 if (is_asan && symbol_level == 0) { | 895 if (is_asan && symbol_level == 0) { |
894 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] | 896 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] |
895 } | 897 } |
896 } | 898 } |
897 } | 899 } |
898 # TODO(GYP) Mac (ui_base_tests_bundle) | 900 # TODO(GYP) Mac (ui_base_tests_bundle) |
OLD | NEW |