Chromium Code Reviews| 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
| 9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
| 10 } | 10 } |
| (...skipping 808 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 819 if (is_ios) { | 819 if (is_ios) { |
| 820 # TODO(GYP) lots of iOS-only steps for ui_base_unittests | 820 # TODO(GYP) lots of iOS-only steps for ui_base_unittests |
| 821 } | 821 } |
| 822 | 822 |
| 823 if (is_win) { | 823 if (is_win) { |
| 824 sources += [ | 824 sources += [ |
| 825 "dragdrop/os_exchange_data_win_unittest.cc", | 825 "dragdrop/os_exchange_data_win_unittest.cc", |
| 826 "win/hwnd_subclass_unittest.cc", | 826 "win/hwnd_subclass_unittest.cc", |
| 827 "win/open_file_name_win_unittest.cc", | 827 "win/open_file_name_win_unittest.cc", |
| 828 ] | 828 ] |
| 829 sources -= [ | |
| 830 "dragdrop/os_exchange_data_provider_aurax11_unittest.cc", | |
|
tfarina
2014/12/16 13:14:08
Don't we have a filename filter for x11?
Slava Chigrin
2014/12/16 13:32:34
As far as I understand, file name filter for GN is
| |
| 831 "x/selection_requestor_unittest.cc", | |
| 832 ] | |
| 829 | 833 |
| 830 ldflags = [ | 834 ldflags = [ |
| 831 "/DELAYLOAD:d2d1.dll", | 835 "/DELAYLOAD:d2d1.dll", |
| 832 "/DELAYLOAD:d3d10_1.dll", | 836 "/DELAYLOAD:d3d10_1.dll", |
| 833 ] | 837 ] |
| 834 libs = [ | 838 libs = [ |
| 835 "d2d1.lib", | 839 "d2d1.lib", |
| 836 "d3d10_1.lib", | 840 "d3d10_1.lib", |
| 837 "imm32.lib", | 841 "imm32.lib", |
| 838 "oleacc.lib", | 842 "oleacc.lib", |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 895 if (is_chromeos) { | 899 if (is_chromeos) { |
| 896 sources -= [ | 900 sources -= [ |
| 897 "dragdrop/os_exchange_data_provider_aurax11_unittest.cc", | 901 "dragdrop/os_exchange_data_provider_aurax11_unittest.cc", |
| 898 "x/selection_requestor_unittest.cc", | 902 "x/selection_requestor_unittest.cc", |
| 899 ] | 903 ] |
| 900 deps += [ "//chromeos" ] | 904 deps += [ "//chromeos" ] |
| 901 } | 905 } |
| 902 } | 906 } |
| 903 } | 907 } |
| 904 # TODO(GYP) Mac (ui_base_tests_bundle) and Android (ui_base_unittests_apk). | 908 # TODO(GYP) Mac (ui_base_tests_bundle) and Android (ui_base_unittests_apk). |
| OLD | NEW |