| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 "cocoa/remote_layer_api.h", | 80 "cocoa/remote_layer_api.h", |
| 81 "cocoa/remote_layer_api.mm", | 81 "cocoa/remote_layer_api.mm", |
| 82 "cocoa/three_part_image.h", | 82 "cocoa/three_part_image.h", |
| 83 "cocoa/three_part_image.mm", | 83 "cocoa/three_part_image.mm", |
| 84 "cocoa/tool_tip_base_view.h", | 84 "cocoa/tool_tip_base_view.h", |
| 85 "cocoa/tool_tip_base_view.mm", | 85 "cocoa/tool_tip_base_view.mm", |
| 86 "cocoa/tracking_area.h", | 86 "cocoa/tracking_area.h", |
| 87 "cocoa/tracking_area.mm", | 87 "cocoa/tracking_area.mm", |
| 88 "cocoa/underlay_opengl_hosting_window.h", | 88 "cocoa/underlay_opengl_hosting_window.h", |
| 89 "cocoa/underlay_opengl_hosting_window.mm", | 89 "cocoa/underlay_opengl_hosting_window.mm", |
| 90 "cocoa/user_interface_item_command_handler.h", |
| 90 "cocoa/view_description.h", | 91 "cocoa/view_description.h", |
| 91 "cocoa/view_description.mm", | 92 "cocoa/view_description.mm", |
| 92 "cocoa/window_size_constants.h", | 93 "cocoa/window_size_constants.h", |
| 93 "cocoa/window_size_constants.mm", | 94 "cocoa/window_size_constants.mm", |
| 94 "cursor/cursor.cc", | 95 "cursor/cursor.cc", |
| 95 "cursor/cursor.h", | 96 "cursor/cursor.h", |
| 96 "cursor/cursor_android.cc", | 97 "cursor/cursor_android.cc", |
| 97 "cursor/cursor_loader.h", | 98 "cursor/cursor_loader.h", |
| 98 "cursor/cursor_win.cc", | 99 "cursor/cursor_win.cc", |
| 99 "default_theme_provider_mac.mm", | 100 "default_theme_provider_mac.mm", |
| (...skipping 773 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 873 } | 874 } |
| 874 if (is_mac) { | 875 if (is_mac) { |
| 875 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] | 876 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] |
| 876 | 877 |
| 877 if (is_asan && symbol_level == 0) { | 878 if (is_asan && symbol_level == 0) { |
| 878 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] | 879 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] |
| 879 } | 880 } |
| 880 } | 881 } |
| 881 } | 882 } |
| 882 # TODO(GYP) Mac (ui_base_tests_bundle) | 883 # TODO(GYP) Mac (ui_base_tests_bundle) |
| OLD | NEW |