| 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 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 563 if (is_android) { | 563 if (is_android) { |
| 564 deps += [ | 564 deps += [ |
| 565 ":ui_base_jni_headers", | 565 ":ui_base_jni_headers", |
| 566 "//ui/android:ui_java", | 566 "//ui/android:ui_java", |
| 567 ] | 567 ] |
| 568 | 568 |
| 569 libs += [ "jnigraphics" ] | 569 libs += [ "jnigraphics" ] |
| 570 } | 570 } |
| 571 | 571 |
| 572 if (is_android && !use_aura) { | 572 if (is_android && !use_aura) { |
| 573 sources += [ |
| 574 "dragdrop/drag_drop_types.h", |
| 575 "dragdrop/drop_target_event.cc", |
| 576 "dragdrop/drop_target_event.h", |
| 577 "dragdrop/os_exchange_data.cc", |
| 578 "dragdrop/os_exchange_data.h", |
| 579 "dragdrop/os_exchange_data_provider_android.cc", |
| 580 "dragdrop/os_exchange_data_provider_android.h", |
| 581 ] |
| 582 |
| 573 sources -= [ | 583 sources -= [ |
| 574 "cursor/cursor_android.cc", | 584 "cursor/cursor_android.cc", |
| 575 "cursor/image_cursors.cc", | 585 "cursor/image_cursors.cc", |
| 576 "cursor/image_cursors.h", | 586 "cursor/image_cursors.h", |
| 577 "default_theme_provider.cc", | 587 "default_theme_provider.cc", |
| 578 "dragdrop/drag_utils.cc", | 588 "dragdrop/drag_utils.cc", |
| 579 "dragdrop/drag_utils.h", | 589 "dragdrop/drag_utils.h", |
| 580 "idle/idle.cc", | 590 "idle/idle.cc", |
| 581 "idle/idle.h", | 591 "idle/idle.h", |
| 582 "idle/idle_android.cc", | 592 "idle/idle_android.cc", |
| (...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 912 } | 922 } |
| 913 if (is_mac) { | 923 if (is_mac) { |
| 914 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] | 924 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] |
| 915 | 925 |
| 916 if (is_asan && symbol_level == 0) { | 926 if (is_asan && symbol_level == 0) { |
| 917 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] | 927 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] |
| 918 } | 928 } |
| 919 } | 929 } |
| 920 } | 930 } |
| 921 # TODO(GYP) Mac (ui_base_tests_bundle) | 931 # TODO(GYP) Mac (ui_base_tests_bundle) |
| OLD | NEW |