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 4221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4232 "//ui/wm", | 4232 "//ui/wm", |
4233 ] | 4233 ] |
4234 } | 4234 } |
4235 if (!is_chromeos && is_linux) { | 4235 if (!is_chromeos && is_linux) { |
4236 sources += [ | 4236 sources += [ |
4237 "../browser/password_manager/native_backend_kwallet_x_unittest.cc", | 4237 "../browser/password_manager/native_backend_kwallet_x_unittest.cc", |
4238 "../browser/shell_integration_linux_unittest.cc", | 4238 "../browser/shell_integration_linux_unittest.cc", |
4239 "../browser/ui/input_method/input_method_engine_unittest.cc", | 4239 "../browser/ui/input_method/input_method_engine_unittest.cc", |
4240 ] | 4240 ] |
4241 } | 4241 } |
4242 if (!is_android && !is_chromeos) { | 4242 |
| 4243 if (is_android || is_chromeos) { |
| 4244 sources += |
| 4245 [ "../browser/media/protected_media_identifier_whitelist_unittest.cc" ] |
| 4246 } else { |
4243 sources += [ | 4247 sources += [ |
4244 "../browser/net/disk_cache_dir_policy_handler_unittest.cc", | 4248 "../browser/net/disk_cache_dir_policy_handler_unittest.cc", |
4245 "//chrome/browser/profiles/profile_list_desktop_unittest.cc", | 4249 "//chrome/browser/profiles/profile_list_desktop_unittest.cc", |
4246 "//chrome/browser/profiles/profile_statistics_unittest.cc", | 4250 "//chrome/browser/profiles/profile_statistics_unittest.cc", |
4247 "//chrome/browser/ui/startup/startup_browser_creator_impl_unittest.cc", | 4251 "//chrome/browser/ui/startup/startup_browser_creator_impl_unittest.cc", |
4248 "//chrome/browser/ui/startup/startup_tab_provider_unittest.cc", | 4252 "//chrome/browser/ui/startup/startup_tab_provider_unittest.cc", |
4249 ] | 4253 ] |
4250 } | 4254 } |
4251 if (use_gio) { | 4255 if (use_gio) { |
4252 deps += [ "//build/linux/libgio" ] | 4256 deps += [ "//build/linux/libgio" ] |
(...skipping 984 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5237 } | 5241 } |
5238 | 5242 |
5239 if (is_win) { | 5243 if (is_win) { |
5240 loadable_module("conflicts_dll") { | 5244 loadable_module("conflicts_dll") { |
5241 testonly = true | 5245 testonly = true |
5242 sources = [ | 5246 sources = [ |
5243 "conflicts/conflicts_dll.cc", | 5247 "conflicts/conflicts_dll.cc", |
5244 ] | 5248 ] |
5245 } | 5249 } |
5246 } | 5250 } |
OLD | NEW |