| 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 4429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4440 if (is_chromeos) { | 4440 if (is_chromeos) { |
| 4441 deps += [ | 4441 deps += [ |
| 4442 "//chrome/browser/chromeos:unit_tests", | 4442 "//chrome/browser/chromeos:unit_tests", |
| 4443 "//chromeos/ime:gencode", | 4443 "//chromeos/ime:gencode", |
| 4444 ] | 4444 ] |
| 4445 sources -= [ | 4445 sources -= [ |
| 4446 "../browser/policy/cloud/user_policy_signin_service_unittest.cc", | 4446 "../browser/policy/cloud/user_policy_signin_service_unittest.cc", |
| 4447 "../browser/signin/signin_manager_unittest.cc", | 4447 "../browser/signin/signin_manager_unittest.cc", |
| 4448 ] | 4448 ] |
| 4449 sources += [ | 4449 sources += [ |
| 4450 "../browser/task_manager/providers/arc/arc_process_filter_unittest.cc", |
| 4450 "base/ash_test_environment_chrome.cc", | 4451 "base/ash_test_environment_chrome.cc", |
| 4451 "base/ash_test_environment_chrome.h", | 4452 "base/ash_test_environment_chrome.h", |
| 4452 ] | 4453 ] |
| 4453 } | 4454 } |
| 4454 if (use_x11) { | 4455 if (use_x11) { |
| 4455 deps += [ "//ui/events/devices" ] | 4456 deps += [ "//ui/events/devices" ] |
| 4456 } else { | 4457 } else { |
| 4457 sources -= [ "../browser/password_manager/password_store_x_unittest.cc" ] | 4458 sources -= [ "../browser/password_manager/password_store_x_unittest.cc" ] |
| 4458 } | 4459 } |
| 4459 if (use_gnome_keyring && current_cpu == "x64") { | 4460 if (use_gnome_keyring && current_cpu == "x64") { |
| (...skipping 689 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5149 } | 5150 } |
| 5150 | 5151 |
| 5151 if (is_win) { | 5152 if (is_win) { |
| 5152 loadable_module("conflicts_dll") { | 5153 loadable_module("conflicts_dll") { |
| 5153 testonly = true | 5154 testonly = true |
| 5154 sources = [ | 5155 sources = [ |
| 5155 "conflicts/conflicts_dll.cc", | 5156 "conflicts/conflicts_dll.cc", |
| 5156 ] | 5157 ] |
| 5157 } | 5158 } |
| 5158 } | 5159 } |
| OLD | NEW |