| 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 "cocoa/user_interface_item_command_handler.h", | 122 "cocoa/user_interface_item_command_handler.h", |
| 123 "cocoa/view_description.h", | 123 "cocoa/view_description.h", |
| 124 "cocoa/view_description.mm", | 124 "cocoa/view_description.mm", |
| 125 "cocoa/window_size_constants.h", | 125 "cocoa/window_size_constants.h", |
| 126 "cocoa/window_size_constants.mm", | 126 "cocoa/window_size_constants.mm", |
| 127 "cursor/cursor.cc", | 127 "cursor/cursor.cc", |
| 128 "cursor/cursor.h", | 128 "cursor/cursor.h", |
| 129 "cursor/cursor_android.cc", | 129 "cursor/cursor_android.cc", |
| 130 "cursor/cursor_loader.h", | 130 "cursor/cursor_loader.h", |
| 131 "cursor/cursor_win.cc", | 131 "cursor/cursor_win.cc", |
| 132 "default_style.h", |
| 132 "default_theme_provider_mac.mm", | 133 "default_theme_provider_mac.mm", |
| 133 "device_form_factor.h", | 134 "device_form_factor.h", |
| 134 "device_form_factor_android.cc", | 135 "device_form_factor_android.cc", |
| 135 "device_form_factor_android.h", | 136 "device_form_factor_android.h", |
| 136 "device_form_factor_desktop.cc", | 137 "device_form_factor_desktop.cc", |
| 137 "device_form_factor_ios.mm", | 138 "device_form_factor_ios.mm", |
| 138 "dragdrop/drag_drop_types.h", | 139 "dragdrop/drag_drop_types.h", |
| 139 "dragdrop/drag_drop_types_win.cc", | 140 "dragdrop/drag_drop_types_win.cc", |
| 140 "dragdrop/drag_source_win.cc", | 141 "dragdrop/drag_source_win.cc", |
| 141 "dragdrop/drag_source_win.h", | 142 "dragdrop/drag_source_win.h", |
| (...skipping 770 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 912 } | 913 } |
| 913 if (is_mac) { | 914 if (is_mac) { |
| 914 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] | 915 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] |
| 915 | 916 |
| 916 if (is_asan && symbol_level == 0) { | 917 if (is_asan && symbol_level == 0) { |
| 917 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] | 918 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] |
| 918 } | 919 } |
| 919 } | 920 } |
| 920 } | 921 } |
| 921 # TODO(GYP) Mac (ui_base_tests_bundle) | 922 # TODO(GYP) Mac (ui_base_tests_bundle) |
| OLD | NEW |