| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/sanitizers/sanitizers.gni") | 7 import("//build/config/sanitizers/sanitizers.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//ui/base/ui_features.gni") | 10 import("//ui/base/ui_features.gni") |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 "resource/resource_bundle_ios.mm", | 226 "resource/resource_bundle_ios.mm", |
| 227 "resource/resource_bundle_mac.mm", | 227 "resource/resource_bundle_mac.mm", |
| 228 "resource/resource_bundle_win.cc", | 228 "resource/resource_bundle_win.cc", |
| 229 "resource/resource_bundle_win.h", | 229 "resource/resource_bundle_win.h", |
| 230 "resource/resource_data_dll_win.cc", | 230 "resource/resource_data_dll_win.cc", |
| 231 "resource/resource_data_dll_win.h", | 231 "resource/resource_data_dll_win.h", |
| 232 "template_expressions.cc", | 232 "template_expressions.cc", |
| 233 "template_expressions.h", | 233 "template_expressions.h", |
| 234 "theme_provider.cc", | 234 "theme_provider.cc", |
| 235 "theme_provider.h", | 235 "theme_provider.h", |
| 236 "touch/selection_bound.cc", | |
| 237 "touch/selection_bound.h", | |
| 238 "touch/touch_device.h", | 236 "touch/touch_device.h", |
| 239 "touch/touch_editing_controller.cc", | 237 "touch/touch_editing_controller.cc", |
| 240 "touch/touch_editing_controller.h", | 238 "touch/touch_editing_controller.h", |
| 241 "touch/touch_enabled.cc", | 239 "touch/touch_enabled.cc", |
| 242 "touch/touch_enabled.h", | 240 "touch/touch_enabled.h", |
| 243 "ui_base_export.h", | 241 "ui_base_export.h", |
| 244 "ui_base_exports.cc", | 242 "ui_base_exports.cc", |
| 245 "ui_base_paths.cc", | 243 "ui_base_paths.cc", |
| 246 "ui_base_paths.h", | 244 "ui_base_paths.h", |
| 247 "ui_base_switches.cc", | 245 "ui_base_switches.cc", |
| (...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 776 "cocoa/nscolor_additions_unittest.mm", | 774 "cocoa/nscolor_additions_unittest.mm", |
| 777 "cocoa/nsgraphics_context_additions_unittest.mm", | 775 "cocoa/nsgraphics_context_additions_unittest.mm", |
| 778 "cocoa/nsview_additions_unittest.mm", | 776 "cocoa/nsview_additions_unittest.mm", |
| 779 "cocoa/three_part_image_unittest.mm", | 777 "cocoa/three_part_image_unittest.mm", |
| 780 "cocoa/tracking_area_unittest.mm", | 778 "cocoa/tracking_area_unittest.mm", |
| 781 "models/list_model_unittest.cc", | 779 "models/list_model_unittest.cc", |
| 782 "models/list_selection_model_unittest.cc", | 780 "models/list_selection_model_unittest.cc", |
| 783 "models/tree_node_model_unittest.cc", | 781 "models/tree_node_model_unittest.cc", |
| 784 "test/data/resource.h", | 782 "test/data/resource.h", |
| 785 "text/bytes_formatting_unittest.cc", | 783 "text/bytes_formatting_unittest.cc", |
| 786 "touch/selection_bound_unittest.cc", | |
| 787 "webui/web_ui_util_unittest.cc", | 784 "webui/web_ui_util_unittest.cc", |
| 788 ] | 785 ] |
| 789 } | 786 } |
| 790 | 787 |
| 791 if (build_ime) { | 788 if (build_ime) { |
| 792 sources += [ | 789 sources += [ |
| 793 "ime/candidate_window_unittest.cc", | 790 "ime/candidate_window_unittest.cc", |
| 794 "ime/chromeos/character_composer_unittest.cc", | 791 "ime/chromeos/character_composer_unittest.cc", |
| 795 "ime/composition_text_unittest.cc", | 792 "ime/composition_text_unittest.cc", |
| 796 "ime/input_method_base_unittest.cc", | 793 "ime/input_method_base_unittest.cc", |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 957 if (is_mac) { | 954 if (is_mac) { |
| 958 mac_framework_bundle("ui_unittests_framework") { | 955 mac_framework_bundle("ui_unittests_framework") { |
| 959 testonly = true | 956 testonly = true |
| 960 deps = [ | 957 deps = [ |
| 961 "//ui/resources:ui_test_pak_bundle_data", | 958 "//ui/resources:ui_test_pak_bundle_data", |
| 962 ] | 959 ] |
| 963 info_plist = "test/framework-Info.plist" | 960 info_plist = "test/framework-Info.plist" |
| 964 output_name = "ui_unittests Framework" | 961 output_name = "ui_unittests Framework" |
| 965 } | 962 } |
| 966 } | 963 } |
| OLD | NEW |