Chromium Code Reviews| 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 741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 752 "text/bytes_formatting_unittest.cc", | 752 "text/bytes_formatting_unittest.cc", |
| 753 "view_prop_unittest.cc", | 753 "view_prop_unittest.cc", |
| 754 "webui/web_ui_util_unittest.cc", | 754 "webui/web_ui_util_unittest.cc", |
| 755 "x/selection_requestor_unittest.cc", | 755 "x/selection_requestor_unittest.cc", |
| 756 ] | 756 ] |
| 757 | 757 |
| 758 if (!use_x11) { | 758 if (!use_x11) { |
| 759 if (is_chromeos) { | 759 if (is_chromeos) { |
| 760 # These were already removed in the chromeos case. | 760 # These were already removed in the chromeos case. |
| 761 sources -= [ | 761 sources -= [ |
| 762 "ime/chromeos/character_composer_unittest.cc", | 762 "ime/chromeos/character_composer_unittest.cc", |
|
ckocagil
2014/09/17 15:03:27
Looks like these are being removed before they are
tfarina
2014/09/17 15:56:00
I will look into this.
| |
| 763 "ime/input_method_chromeos_unittest.cc", | 763 "ime/input_method_chromeos_unittest.cc", |
| 764 ] | 764 ] |
| 765 } | 765 } |
| 766 sources -= [ "ime/composition_text_util_pango_unittest.cc" ] | |
| 767 } | 766 } |
| 768 } | 767 } |
| 769 | 768 |
| 770 if (build_ime) { | 769 if (build_ime) { |
| 771 sources += [ | 770 sources += [ |
| 772 "ime/candidate_window_unittest.cc", | 771 "ime/candidate_window_unittest.cc", |
| 773 "ime/chromeos/character_composer_unittest.cc", | 772 "ime/chromeos/character_composer_unittest.cc", |
| 774 "ime/composition_text_util_pango_unittest.cc", | |
| 775 "ime/input_method_base_unittest.cc", | 773 "ime/input_method_base_unittest.cc", |
| 776 "ime/input_method_chromeos_unittest.cc", | 774 "ime/input_method_chromeos_unittest.cc", |
| 777 "ime/remote_input_method_win_unittest.cc", | 775 "ime/remote_input_method_win_unittest.cc", |
| 778 "ime/win/imm32_manager_unittest.cc", | 776 "ime/win/imm32_manager_unittest.cc", |
| 779 "ime/win/tsf_input_scope_unittest.cc", | 777 "ime/win/tsf_input_scope_unittest.cc", |
| 780 ] | 778 ] |
| 779 if (use_x11) { | |
| 780 sources += [ "ime/composition_text_util_pango_unittest.cc" ] | |
| 781 } | |
| 781 } | 782 } |
| 782 | 783 |
| 783 deps = [ | 784 deps = [ |
| 784 "//base", | 785 "//base", |
| 785 "//base/allocator", | 786 "//base/allocator", |
| 786 "//base/test:test_support", | 787 "//base/test:test_support", |
| 787 "//net", | 788 "//net", |
| 788 "//skia", | 789 "//skia", |
| 789 "//testing/gmock", | 790 "//testing/gmock", |
| 790 "//testing/gtest", | 791 "//testing/gtest", |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 892 deps += [ | 893 deps += [ |
| 893 "//ui/aura:test_support", | 894 "//ui/aura:test_support", |
| 894 "//ui/events:gesture_detection", | 895 "//ui/events:gesture_detection", |
| 895 #'../chromeos/chromeos.gyp:chromeos', TODO(GYP) | 896 #'../chromeos/chromeos.gyp:chromeos', TODO(GYP) |
| 896 #'chromeos/ui_chromeos.gyp:ui_chromeos', | 897 #'chromeos/ui_chromeos.gyp:ui_chromeos', |
| 897 ] | 898 ] |
| 898 } | 899 } |
| 899 } | 900 } |
| 900 } | 901 } |
| 901 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk). | 902 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk). |
| OLD | NEW |