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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
(...skipping 4068 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4079 "//ui/wm", | 4079 "//ui/wm", |
4080 ] | 4080 ] |
4081 } | 4081 } |
4082 if (!is_chromeos && is_linux) { | 4082 if (!is_chromeos && is_linux) { |
4083 sources += [ | 4083 sources += [ |
4084 "../browser/password_manager/native_backend_kwallet_x_unittest.cc", | 4084 "../browser/password_manager/native_backend_kwallet_x_unittest.cc", |
4085 "../browser/shell_integration_linux_unittest.cc", | 4085 "../browser/shell_integration_linux_unittest.cc", |
4086 "../browser/ui/input_method/input_method_engine_unittest.cc", | 4086 "../browser/ui/input_method/input_method_engine_unittest.cc", |
4087 ] | 4087 ] |
4088 } | 4088 } |
4089 if (!is_android && !is_chromeos) { | 4089 |
| 4090 if (is_android || is_chromeos) { |
| 4091 sources += [ "../browser/media/protected_media_identifier_permission_context
_unittest.cc" ] |
| 4092 } else { |
4090 sources += [ | 4093 sources += [ |
4091 "../browser/net/disk_cache_dir_policy_handler_unittest.cc", | 4094 "../browser/net/disk_cache_dir_policy_handler_unittest.cc", |
4092 "//chrome/browser/profiles/profile_list_desktop_unittest.cc", | 4095 "//chrome/browser/profiles/profile_list_desktop_unittest.cc", |
4093 "//chrome/browser/profiles/profile_statistics_unittest.cc", | 4096 "//chrome/browser/profiles/profile_statistics_unittest.cc", |
4094 "//chrome/browser/ui/startup/startup_browser_creator_impl_unittest.cc", | 4097 "//chrome/browser/ui/startup/startup_browser_creator_impl_unittest.cc", |
4095 "//chrome/browser/ui/startup/startup_tab_provider_unittest.cc", | 4098 "//chrome/browser/ui/startup/startup_tab_provider_unittest.cc", |
4096 ] | 4099 ] |
4097 } | 4100 } |
4098 if (use_gio) { | 4101 if (use_gio) { |
4099 deps += [ "//build/linux/libgio" ] | 4102 deps += [ "//build/linux/libgio" ] |
(...skipping 940 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5040 } | 5043 } |
5041 | 5044 |
5042 if (is_win) { | 5045 if (is_win) { |
5043 loadable_module("conflicts_dll") { | 5046 loadable_module("conflicts_dll") { |
5044 testonly = true | 5047 testonly = true |
5045 sources = [ | 5048 sources = [ |
5046 "conflicts/conflicts_dll.cc", | 5049 "conflicts/conflicts_dll.cc", |
5047 ] | 5050 ] |
5048 } | 5051 } |
5049 } | 5052 } |
OLD | NEW |