| 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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 "resource/resource_handle.h", | 195 "resource/resource_handle.h", |
| 196 "template_expressions.cc", | 196 "template_expressions.cc", |
| 197 "template_expressions.h", | 197 "template_expressions.h", |
| 198 "theme_provider.cc", | 198 "theme_provider.cc", |
| 199 "theme_provider.h", | 199 "theme_provider.h", |
| 200 "touch/selection_bound.cc", | 200 "touch/selection_bound.cc", |
| 201 "touch/selection_bound.h", | 201 "touch/selection_bound.h", |
| 202 "touch/touch_device.h", | 202 "touch/touch_device.h", |
| 203 "touch/touch_editing_controller.cc", | 203 "touch/touch_editing_controller.cc", |
| 204 "touch/touch_editing_controller.h", | 204 "touch/touch_editing_controller.h", |
| 205 "touch/touch_enabled.cc", | |
| 206 "touch/touch_enabled.h", | |
| 207 "ui_base_export.h", | 205 "ui_base_export.h", |
| 208 "ui_base_exports.cc", | 206 "ui_base_exports.cc", |
| 209 "ui_base_paths.cc", | 207 "ui_base_paths.cc", |
| 210 "ui_base_paths.h", | 208 "ui_base_paths.h", |
| 211 "ui_base_switches.cc", | 209 "ui_base_switches.cc", |
| 212 "ui_base_switches.h", | 210 "ui_base_switches.h", |
| 213 "ui_base_switches_util.cc", | 211 "ui_base_switches_util.cc", |
| 214 "ui_base_switches_util.h", | 212 "ui_base_switches_util.h", |
| 215 "ui_base_types.cc", | 213 "ui_base_types.cc", |
| 216 "ui_base_types.h", | 214 "ui_base_types.h", |
| (...skipping 671 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 888 } | 886 } |
| 889 if (is_mac) { | 887 if (is_mac) { |
| 890 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] | 888 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] |
| 891 | 889 |
| 892 if (is_asan && symbol_level == 0) { | 890 if (is_asan && symbol_level == 0) { |
| 893 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] | 891 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] |
| 894 } | 892 } |
| 895 } | 893 } |
| 896 } | 894 } |
| 897 # TODO(GYP) Mac (ui_base_tests_bundle) | 895 # TODO(GYP) Mac (ui_base_tests_bundle) |
| OLD | NEW |