| 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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 "resource/resource_bundle_mac.mm", | 208 "resource/resource_bundle_mac.mm", |
| 209 "resource/resource_bundle_win.cc", | 209 "resource/resource_bundle_win.cc", |
| 210 "resource/resource_bundle_win.h", | 210 "resource/resource_bundle_win.h", |
| 211 "resource/resource_data_dll_win.cc", | 211 "resource/resource_data_dll_win.cc", |
| 212 "resource/resource_data_dll_win.h", | 212 "resource/resource_data_dll_win.h", |
| 213 "resource/resource_handle.h", | 213 "resource/resource_handle.h", |
| 214 "text/bytes_formatting.cc", | 214 "text/bytes_formatting.cc", |
| 215 "text/bytes_formatting.h", | 215 "text/bytes_formatting.h", |
| 216 "theme_provider.cc", | 216 "theme_provider.cc", |
| 217 "theme_provider.h", | 217 "theme_provider.h", |
| 218 "touch/selection_bound.cc", |
| 219 "touch/selection_bound.h", |
| 218 "touch/touch_device.h", | 220 "touch/touch_device.h", |
| 219 "touch/touch_editing_controller.cc", | 221 "touch/touch_editing_controller.cc", |
| 220 "touch/touch_editing_controller.h", | 222 "touch/touch_editing_controller.h", |
| 221 "touch/touch_enabled.cc", | 223 "touch/touch_enabled.cc", |
| 222 "touch/touch_enabled.h", | 224 "touch/touch_enabled.h", |
| 223 "ui_base_export.h", | 225 "ui_base_export.h", |
| 224 "ui_base_exports.cc", | 226 "ui_base_exports.cc", |
| 225 "ui_base_paths.cc", | 227 "ui_base_paths.cc", |
| 226 "ui_base_paths.h", | 228 "ui_base_paths.h", |
| 227 "ui_base_switches.cc", | 229 "ui_base_switches.cc", |
| (...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 757 "cocoa/menu_controller_unittest.mm", | 759 "cocoa/menu_controller_unittest.mm", |
| 758 "cocoa/nsgraphics_context_additions_unittest.mm", | 760 "cocoa/nsgraphics_context_additions_unittest.mm", |
| 759 "cocoa/nsview_additions_unittest.mm", | 761 "cocoa/nsview_additions_unittest.mm", |
| 760 "cocoa/tracking_area_unittest.mm", | 762 "cocoa/tracking_area_unittest.mm", |
| 761 "dragdrop/os_exchange_data_provider_aurax11_unittest.cc", | 763 "dragdrop/os_exchange_data_provider_aurax11_unittest.cc", |
| 762 "models/list_model_unittest.cc", | 764 "models/list_model_unittest.cc", |
| 763 "models/list_selection_model_unittest.cc", | 765 "models/list_selection_model_unittest.cc", |
| 764 "models/tree_node_model_unittest.cc", | 766 "models/tree_node_model_unittest.cc", |
| 765 "test/data/resource.h", | 767 "test/data/resource.h", |
| 766 "text/bytes_formatting_unittest.cc", | 768 "text/bytes_formatting_unittest.cc", |
| 767 "touch/touch_editing_controller_unittest.cc", | 769 "touch/selection_bound_unittest.cc", |
| 768 "view_prop_unittest.cc", | 770 "view_prop_unittest.cc", |
| 769 "webui/web_ui_util_unittest.cc", | 771 "webui/web_ui_util_unittest.cc", |
| 770 "x/selection_requestor_unittest.cc", | 772 "x/selection_requestor_unittest.cc", |
| 771 ] | 773 ] |
| 772 } | 774 } |
| 773 | 775 |
| 774 if (build_ime) { | 776 if (build_ime) { |
| 775 sources += [ | 777 sources += [ |
| 776 "ime/candidate_window_unittest.cc", | 778 "ime/candidate_window_unittest.cc", |
| 777 "ime/chromeos/character_composer_unittest.cc", | 779 "ime/chromeos/character_composer_unittest.cc", |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 892 if (is_chromeos) { | 894 if (is_chromeos) { |
| 893 sources -= [ | 895 sources -= [ |
| 894 "dragdrop/os_exchange_data_provider_aurax11_unittest.cc", | 896 "dragdrop/os_exchange_data_provider_aurax11_unittest.cc", |
| 895 "x/selection_requestor_unittest.cc", | 897 "x/selection_requestor_unittest.cc", |
| 896 ] | 898 ] |
| 897 deps += [ "//chromeos" ] | 899 deps += [ "//chromeos" ] |
| 898 } | 900 } |
| 899 } | 901 } |
| 900 } | 902 } |
| 901 # TODO(GYP) Mac (ui_base_tests_bundle) and Android (ui_base_unittests_apk). | 903 # TODO(GYP) Mac (ui_base_tests_bundle) and Android (ui_base_unittests_apk). |
| OLD | NEW |