| 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 657 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 668 ] | 668 ] |
| 669 | 669 |
| 670 if (build_ime) { | 670 if (build_ime) { |
| 671 sources += [ | 671 sources += [ |
| 672 "ime/dummy_input_method.cc", | 672 "ime/dummy_input_method.cc", |
| 673 "ime/dummy_input_method.h", | 673 "ime/dummy_input_method.h", |
| 674 "ime/dummy_text_input_client.cc", | 674 "ime/dummy_text_input_client.cc", |
| 675 "ime/dummy_text_input_client.h", | 675 "ime/dummy_text_input_client.h", |
| 676 ] | 676 ] |
| 677 | 677 |
| 678 deps += [ "//ui/base/ime" ] | 678 deps += [ |
| 679 "//ui/base/ime", |
| 680 "//ui/events", |
| 681 ] |
| 679 } | 682 } |
| 680 | 683 |
| 681 if (!use_aura) { | 684 if (!use_aura) { |
| 682 sources -= [ "test/ui_controls_aura.cc" ] | 685 sources -= [ "test/ui_controls_aura.cc" ] |
| 683 } else if (is_win) { | 686 } else if (is_win) { |
| 684 sources -= [ "test/ui_controls_win.cc" ] | 687 sources -= [ "test/ui_controls_win.cc" ] |
| 685 } | 688 } |
| 686 } | 689 } |
| 687 | 690 |
| 688 if (is_android) { | 691 if (is_android) { |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 923 } | 926 } |
| 924 if (is_mac) { | 927 if (is_mac) { |
| 925 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] | 928 data += [ "$root_out_dir/ui_unittests Framework.framework/" ] |
| 926 | 929 |
| 927 if (is_asan && symbol_level == 0) { | 930 if (is_asan && symbol_level == 0) { |
| 928 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] | 931 data += [ "$root_out_dir/ui_base_unittests.dSYM/" ] |
| 929 } | 932 } |
| 930 } | 933 } |
| 931 } | 934 } |
| 932 # TODO(GYP) Mac (ui_base_tests_bundle) | 935 # TODO(GYP) Mac (ui_base_tests_bundle) |
| OLD | NEW |