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/compiler/compiler.gni") | 5 import("//build/config/compiler/compiler.gni") |
6 import("//build/config/sanitizers/sanitizers.gni") | 6 import("//build/config/sanitizers/sanitizers.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
9 | 9 |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 "cocoa/menu_controller.h", | 74 "cocoa/menu_controller.h", |
75 "cocoa/menu_controller.mm", | 75 "cocoa/menu_controller.mm", |
76 "cocoa/nib_loading.h", | 76 "cocoa/nib_loading.h", |
77 "cocoa/nib_loading.mm", | 77 "cocoa/nib_loading.mm", |
78 "cocoa/nsgraphics_context_additions.h", | 78 "cocoa/nsgraphics_context_additions.h", |
79 "cocoa/nsgraphics_context_additions.mm", | 79 "cocoa/nsgraphics_context_additions.mm", |
80 "cocoa/nsview_additions.h", | 80 "cocoa/nsview_additions.h", |
81 "cocoa/nsview_additions.mm", | 81 "cocoa/nsview_additions.mm", |
82 "cocoa/remote_layer_api.h", | 82 "cocoa/remote_layer_api.h", |
83 "cocoa/remote_layer_api.mm", | 83 "cocoa/remote_layer_api.mm", |
| 84 "cocoa/scoped_cg_context_smooth_fonts.h", |
| 85 "cocoa/scoped_cg_context_smooth_fonts.mm", |
84 "cocoa/three_part_image.h", | 86 "cocoa/three_part_image.h", |
85 "cocoa/three_part_image.mm", | 87 "cocoa/three_part_image.mm", |
86 "cocoa/tool_tip_base_view.h", | 88 "cocoa/tool_tip_base_view.h", |
87 "cocoa/tool_tip_base_view.mm", | 89 "cocoa/tool_tip_base_view.mm", |
88 "cocoa/tracking_area.h", | 90 "cocoa/tracking_area.h", |
89 "cocoa/tracking_area.mm", | 91 "cocoa/tracking_area.mm", |
90 "cocoa/underlay_opengl_hosting_window.h", | 92 "cocoa/underlay_opengl_hosting_window.h", |
91 "cocoa/underlay_opengl_hosting_window.mm", | 93 "cocoa/underlay_opengl_hosting_window.mm", |
92 "cocoa/user_interface_item_command_handler.h", | 94 "cocoa/user_interface_item_command_handler.h", |
93 "cocoa/view_description.h", | 95 "cocoa/view_description.h", |
(...skipping 782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
876 } | 878 } |
877 if (is_mac) { | 879 if (is_mac) { |
878 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] | 880 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] |
879 | 881 |
880 if (is_asan && symbol_level == 0) { | 882 if (is_asan && symbol_level == 0) { |
881 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] | 883 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] |
882 } | 884 } |
883 } | 885 } |
884 } | 886 } |
885 # TODO(GYP) Mac (ui_base_tests_bundle) | 887 # TODO(GYP) Mac (ui_base_tests_bundle) |
OLD | NEW |