| 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 += [ "../browser/media/protected_media_identifier_permission_context
_unittest.cc" ] |
| 4245 } else { |
| 4243 sources += [ | 4246 sources += [ |
| 4244 "../browser/net/disk_cache_dir_policy_handler_unittest.cc", | 4247 "../browser/net/disk_cache_dir_policy_handler_unittest.cc", |
| 4245 "//chrome/browser/profiles/profile_list_desktop_unittest.cc", | 4248 "//chrome/browser/profiles/profile_list_desktop_unittest.cc", |
| 4246 "//chrome/browser/profiles/profile_statistics_unittest.cc", | 4249 "//chrome/browser/profiles/profile_statistics_unittest.cc", |
| 4247 "//chrome/browser/ui/startup/startup_browser_creator_impl_unittest.cc", | 4250 "//chrome/browser/ui/startup/startup_browser_creator_impl_unittest.cc", |
| 4248 "//chrome/browser/ui/startup/startup_tab_provider_unittest.cc", | 4251 "//chrome/browser/ui/startup/startup_tab_provider_unittest.cc", |
| 4249 ] | 4252 ] |
| 4250 } | 4253 } |
| 4251 if (use_gio) { | 4254 if (use_gio) { |
| 4252 deps += [ "//build/linux/libgio" ] | 4255 deps += [ "//build/linux/libgio" ] |
| (...skipping 986 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5239 } | 5242 } |
| 5240 | 5243 |
| 5241 if (is_win) { | 5244 if (is_win) { |
| 5242 loadable_module("conflicts_dll") { | 5245 loadable_module("conflicts_dll") { |
| 5243 testonly = true | 5246 testonly = true |
| 5244 sources = [ | 5247 sources = [ |
| 5245 "conflicts/conflicts_dll.cc", | 5248 "conflicts/conflicts_dll.cc", |
| 5246 ] | 5249 ] |
| 5247 } | 5250 } |
| 5248 } | 5251 } |
| OLD | NEW |