| 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 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 if (is_android) { | 8 if (is_android) { |
| 9 import("//build/config/android/config.gni") | 9 import("//build/config/android/config.gni") |
| 10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 "resource/resource_bundle.h", | 215 "resource/resource_bundle.h", |
| 216 "resource/resource_bundle_android.cc", | 216 "resource/resource_bundle_android.cc", |
| 217 "resource/resource_bundle_auralinux.cc", | 217 "resource/resource_bundle_auralinux.cc", |
| 218 "resource/resource_bundle_ios.mm", | 218 "resource/resource_bundle_ios.mm", |
| 219 "resource/resource_bundle_mac.mm", | 219 "resource/resource_bundle_mac.mm", |
| 220 "resource/resource_bundle_win.cc", | 220 "resource/resource_bundle_win.cc", |
| 221 "resource/resource_bundle_win.h", | 221 "resource/resource_bundle_win.h", |
| 222 "resource/resource_data_dll_win.cc", | 222 "resource/resource_data_dll_win.cc", |
| 223 "resource/resource_data_dll_win.h", | 223 "resource/resource_data_dll_win.h", |
| 224 "resource/resource_handle.h", | 224 "resource/resource_handle.h", |
| 225 "template_expressions.cc", |
| 226 "template_expressions.h", |
| 225 "text/bytes_formatting.cc", | 227 "text/bytes_formatting.cc", |
| 226 "text/bytes_formatting.h", | 228 "text/bytes_formatting.h", |
| 227 "theme_provider.cc", | 229 "theme_provider.cc", |
| 228 "theme_provider.h", | 230 "theme_provider.h", |
| 229 "touch/selection_bound.cc", | 231 "touch/selection_bound.cc", |
| 230 "touch/selection_bound.h", | 232 "touch/selection_bound.h", |
| 231 "touch/touch_device.h", | 233 "touch/touch_device.h", |
| 232 "touch/touch_editing_controller.cc", | 234 "touch/touch_editing_controller.cc", |
| 233 "touch/touch_editing_controller.h", | 235 "touch/touch_editing_controller.h", |
| 234 "touch/touch_enabled.cc", | 236 "touch/touch_enabled.cc", |
| (...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 629 "l10n/l10n_util_mac_unittest.mm", | 631 "l10n/l10n_util_mac_unittest.mm", |
| 630 "l10n/l10n_util_unittest.cc", | 632 "l10n/l10n_util_unittest.cc", |
| 631 "l10n/l10n_util_win_unittest.cc", | 633 "l10n/l10n_util_win_unittest.cc", |
| 632 "l10n/time_format_unittest.cc", | 634 "l10n/time_format_unittest.cc", |
| 633 "layout_unittest.cc", | 635 "layout_unittest.cc", |
| 634 "models/tree_node_iterator_unittest.cc", | 636 "models/tree_node_iterator_unittest.cc", |
| 635 "resource/data_pack_literal.cc", | 637 "resource/data_pack_literal.cc", |
| 636 "resource/data_pack_unittest.cc", | 638 "resource/data_pack_unittest.cc", |
| 637 "resource/material_design/material_design_controller_unittest.cc", | 639 "resource/material_design/material_design_controller_unittest.cc", |
| 638 "resource/resource_bundle_unittest.cc", | 640 "resource/resource_bundle_unittest.cc", |
| 641 "template_expressions_unittest.cc", |
| 639 "test/run_all_unittests.cc", | 642 "test/run_all_unittests.cc", |
| 640 "test/scoped_fake_nswindow_fullscreen_unittest.mm", | 643 "test/scoped_fake_nswindow_fullscreen_unittest.mm", |
| 641 "test/test_clipboard_unittest.cc", | 644 "test/test_clipboard_unittest.cc", |
| 642 "user_activity/user_activity_detector_unittest.cc", | 645 "user_activity/user_activity_detector_unittest.cc", |
| 643 ] | 646 ] |
| 644 | 647 |
| 645 if (is_android) { | 648 if (is_android) { |
| 646 sources -= [ "user_activity/user_activity_detector_unittest.cc" ] | 649 sources -= [ "user_activity/user_activity_detector_unittest.cc" ] |
| 647 } | 650 } |
| 648 | 651 |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 807 } | 810 } |
| 808 | 811 |
| 809 if (is_chromeos) { | 812 if (is_chromeos) { |
| 810 deps += [ | 813 deps += [ |
| 811 "//chromeos", | 814 "//chromeos", |
| 812 "//ui/events:dom_keycode_converter", | 815 "//ui/events:dom_keycode_converter", |
| 813 ] | 816 ] |
| 814 } | 817 } |
| 815 } | 818 } |
| 816 # TODO(GYP) Mac (ui_base_tests_bundle) | 819 # TODO(GYP) Mac (ui_base_tests_bundle) |
| OLD | NEW |