| 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 "cocoa/menu_controller.h", | 88 "cocoa/menu_controller.h", |
| 89 "cocoa/menu_controller.mm", | 89 "cocoa/menu_controller.mm", |
| 90 "cocoa/nib_loading.h", | 90 "cocoa/nib_loading.h", |
| 91 "cocoa/nib_loading.mm", | 91 "cocoa/nib_loading.mm", |
| 92 "cocoa/nsgraphics_context_additions.h", | 92 "cocoa/nsgraphics_context_additions.h", |
| 93 "cocoa/nsgraphics_context_additions.mm", | 93 "cocoa/nsgraphics_context_additions.mm", |
| 94 "cocoa/nsview_additions.h", | 94 "cocoa/nsview_additions.h", |
| 95 "cocoa/nsview_additions.mm", | 95 "cocoa/nsview_additions.mm", |
| 96 "cocoa/remote_layer_api.h", | 96 "cocoa/remote_layer_api.h", |
| 97 "cocoa/remote_layer_api.mm", | 97 "cocoa/remote_layer_api.mm", |
| 98 "cocoa/three_part_image.h" |
| 99 "cocoa/three_part_image.mm" |
| 98 "cocoa/tracking_area.h", | 100 "cocoa/tracking_area.h", |
| 99 "cocoa/tracking_area.mm", | 101 "cocoa/tracking_area.mm", |
| 100 "cocoa/underlay_opengl_hosting_window.h", | 102 "cocoa/underlay_opengl_hosting_window.h", |
| 101 "cocoa/underlay_opengl_hosting_window.mm", | 103 "cocoa/underlay_opengl_hosting_window.mm", |
| 102 "cocoa/view_description.h", | 104 "cocoa/view_description.h", |
| 103 "cocoa/view_description.mm", | 105 "cocoa/view_description.mm", |
| 104 "cocoa/window_size_constants.h", | 106 "cocoa/window_size_constants.h", |
| 105 "cocoa/window_size_constants.mm", | 107 "cocoa/window_size_constants.mm", |
| 106 "cursor/cursor.cc", | 108 "cursor/cursor.cc", |
| 107 "cursor/cursor.h", | 109 "cursor/cursor.h", |
| (...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 655 "cocoa/controls/blue_label_button_unittest.mm", | 657 "cocoa/controls/blue_label_button_unittest.mm", |
| 656 "cocoa/controls/hover_image_menu_button_unittest.mm", | 658 "cocoa/controls/hover_image_menu_button_unittest.mm", |
| 657 "cocoa/controls/hyperlink_button_cell_unittest.mm", | 659 "cocoa/controls/hyperlink_button_cell_unittest.mm", |
| 658 "cocoa/controls/hyperlink_text_view_unittest.mm", | 660 "cocoa/controls/hyperlink_text_view_unittest.mm", |
| 659 "cocoa/focus_tracker_unittest.mm", | 661 "cocoa/focus_tracker_unittest.mm", |
| 660 "cocoa/fullscreen_window_manager_unittest.mm", | 662 "cocoa/fullscreen_window_manager_unittest.mm", |
| 661 "cocoa/hover_image_button_unittest.mm", | 663 "cocoa/hover_image_button_unittest.mm", |
| 662 "cocoa/menu_controller_unittest.mm", | 664 "cocoa/menu_controller_unittest.mm", |
| 663 "cocoa/nsgraphics_context_additions_unittest.mm", | 665 "cocoa/nsgraphics_context_additions_unittest.mm", |
| 664 "cocoa/nsview_additions_unittest.mm", | 666 "cocoa/nsview_additions_unittest.mm", |
| 667 "cocoa/three_part_image_unittest.mm", |
| 665 "cocoa/tracking_area_unittest.mm", | 668 "cocoa/tracking_area_unittest.mm", |
| 666 "models/list_model_unittest.cc", | 669 "models/list_model_unittest.cc", |
| 667 "models/list_selection_model_unittest.cc", | 670 "models/list_selection_model_unittest.cc", |
| 668 "models/tree_node_model_unittest.cc", | 671 "models/tree_node_model_unittest.cc", |
| 669 "test/data/resource.h", | 672 "test/data/resource.h", |
| 670 "text/bytes_formatting_unittest.cc", | 673 "text/bytes_formatting_unittest.cc", |
| 671 "touch/selection_bound_unittest.cc", | 674 "touch/selection_bound_unittest.cc", |
| 672 "view_prop_unittest.cc", | 675 "view_prop_unittest.cc", |
| 673 "webui/web_ui_util_unittest.cc", | 676 "webui/web_ui_util_unittest.cc", |
| 674 ] | 677 ] |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 797 } | 800 } |
| 798 | 801 |
| 799 if (is_chromeos) { | 802 if (is_chromeos) { |
| 800 deps += [ | 803 deps += [ |
| 801 "//chromeos", | 804 "//chromeos", |
| 802 "//ui/events:dom4_keycode_converter", | 805 "//ui/events:dom4_keycode_converter", |
| 803 ] | 806 ] |
| 804 } | 807 } |
| 805 } | 808 } |
| 806 # TODO(GYP) Mac (ui_base_tests_bundle) | 809 # TODO(GYP) Mac (ui_base_tests_bundle) |
| OLD | NEW |