| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/sanitizers/sanitizers.gni") | 7 import("//build/config/sanitizers/sanitizers.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//ui/base/ui_features.gni") | 10 import("//ui/base/ui_features.gni") |
| (...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 546 if (use_ozone) { | 546 if (use_ozone) { |
| 547 sources += [ | 547 sources += [ |
| 548 "cursor/cursor_loader_ozone.cc", | 548 "cursor/cursor_loader_ozone.cc", |
| 549 "cursor/cursor_loader_ozone.h", | 549 "cursor/cursor_loader_ozone.h", |
| 550 "cursor/cursor_ozone.cc", | 550 "cursor/cursor_ozone.cc", |
| 551 "cursor/ozone/bitmap_cursor_factory_ozone.cc", | 551 "cursor/ozone/bitmap_cursor_factory_ozone.cc", |
| 552 "cursor/ozone/bitmap_cursor_factory_ozone.h", | 552 "cursor/ozone/bitmap_cursor_factory_ozone.h", |
| 553 ] | 553 ] |
| 554 | 554 |
| 555 deps += [ | 555 deps += [ |
| 556 "//ui/events/ozone:events_ozone_evdev", |
| 556 "//ui/events/ozone:events_ozone_layout", | 557 "//ui/events/ozone:events_ozone_layout", |
| 557 "//ui/ozone:ozone_base", | 558 "//ui/ozone:ozone_base", |
| 558 ] | 559 ] |
| 559 } | 560 } |
| 560 | 561 |
| 561 if (!toolkit_views && !use_aura) { | 562 if (!toolkit_views && !use_aura) { |
| 562 sources -= [ | 563 sources -= [ |
| 563 "dragdrop/drag_drop_types.h", | 564 "dragdrop/drag_drop_types.h", |
| 564 "dragdrop/drop_target_event.cc", | 565 "dragdrop/drop_target_event.cc", |
| 565 "dragdrop/drop_target_event.h", | 566 "dragdrop/drop_target_event.h", |
| (...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 922 } | 923 } |
| 923 if (is_mac) { | 924 if (is_mac) { |
| 924 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] | 925 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] |
| 925 | 926 |
| 926 if (is_asan && symbol_level == 0) { | 927 if (is_asan && symbol_level == 0) { |
| 927 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] | 928 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] |
| 928 } | 929 } |
| 929 } | 930 } |
| 930 } | 931 } |
| 931 # TODO(GYP) Mac (ui_base_tests_bundle) | 932 # TODO(GYP) Mac (ui_base_tests_bundle) |
| OLD | NEW |