| 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 4414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4425 if (is_chromeos) { | 4425 if (is_chromeos) { |
| 4426 deps += [ | 4426 deps += [ |
| 4427 "//chrome/browser/chromeos:unit_tests", | 4427 "//chrome/browser/chromeos:unit_tests", |
| 4428 "//chromeos/ime:gencode", | 4428 "//chromeos/ime:gencode", |
| 4429 ] | 4429 ] |
| 4430 sources -= [ | 4430 sources -= [ |
| 4431 "../browser/policy/cloud/user_policy_signin_service_unittest.cc", | 4431 "../browser/policy/cloud/user_policy_signin_service_unittest.cc", |
| 4432 "../browser/signin/signin_manager_unittest.cc", | 4432 "../browser/signin/signin_manager_unittest.cc", |
| 4433 ] | 4433 ] |
| 4434 sources += [ | 4434 sources += [ |
| 4435 "../browser/task_manager/providers/arc/arc_process_whitelist_unittest.cc", |
| 4435 "base/ash_test_environment_chrome.cc", | 4436 "base/ash_test_environment_chrome.cc", |
| 4436 "base/ash_test_environment_chrome.h", | 4437 "base/ash_test_environment_chrome.h", |
| 4437 ] | 4438 ] |
| 4438 } | 4439 } |
| 4439 if (use_x11) { | 4440 if (use_x11) { |
| 4440 deps += [ "//ui/events/devices" ] | 4441 deps += [ "//ui/events/devices" ] |
| 4441 } else { | 4442 } else { |
| 4442 sources -= [ "../browser/password_manager/password_store_x_unittest.cc" ] | 4443 sources -= [ "../browser/password_manager/password_store_x_unittest.cc" ] |
| 4443 } | 4444 } |
| 4444 if (use_gnome_keyring && current_cpu == "x64") { | 4445 if (use_gnome_keyring && current_cpu == "x64") { |
| (...skipping 683 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5128 } | 5129 } |
| 5129 | 5130 |
| 5130 if (is_win) { | 5131 if (is_win) { |
| 5131 loadable_module("conflicts_dll") { | 5132 loadable_module("conflicts_dll") { |
| 5132 testonly = true | 5133 testonly = true |
| 5133 sources = [ | 5134 sources = [ |
| 5134 "conflicts/conflicts_dll.cc", | 5135 "conflicts/conflicts_dll.cc", |
| 5135 ] | 5136 ] |
| 5136 } | 5137 } |
| 5137 } | 5138 } |
| OLD | NEW |