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/crypto.gni") | 5 import("//build/config/crypto.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//build/module_args/v8.gni") | 8 import("//build/module_args/v8.gni") |
9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
10 | 10 |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 deps += [ "//pdf" ] | 176 deps += [ "//pdf" ] |
177 } | 177 } |
178 | 178 |
179 if (use_ash) { | 179 if (use_ash) { |
180 deps += [ "//ash:test_support" ] | 180 deps += [ "//ash:test_support" ] |
181 } | 181 } |
182 if (toolkit_views) { | 182 if (toolkit_views) { |
183 deps += [ "//ui/views:test_support" ] | 183 deps += [ "//ui/views:test_support" ] |
184 } | 184 } |
185 | 185 |
186 if (enable_background) { | |
187 defines += [ "ENABLE_BACKGROUND=1" ] | |
188 } | |
189 | |
190 if (enable_extensions) { | 186 if (enable_extensions) { |
191 deps += [ | 187 deps += [ |
192 "//chrome/common/extensions/api", | 188 "//chrome/common/extensions/api", |
193 "//extensions:test_support", | 189 "//extensions:test_support", |
194 ] | 190 ] |
195 } | 191 } |
196 } | 192 } |
197 | 193 |
198 source_set("test_support_unit") { | 194 source_set("test_support_unit") { |
199 testonly = true | 195 testonly = true |
(...skipping 1480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1680 } | 1676 } |
1681 if (use_ozone) { | 1677 if (use_ozone) { |
1682 # crbug.com/354036 | 1678 # crbug.com/354036 |
1683 sources -= [ "../browser/chromeos/events/event_rewriter_unittest.cc" ] | 1679 sources -= [ "../browser/chromeos/events/event_rewriter_unittest.cc" ] |
1684 } | 1680 } |
1685 if (!enable_plugin_installation) { | 1681 if (!enable_plugin_installation) { |
1686 sources -= [ "../browser/plugins/plugin_installer_unittest.cc" ] | 1682 sources -= [ "../browser/plugins/plugin_installer_unittest.cc" ] |
1687 } | 1683 } |
1688 } | 1684 } |
1689 } | 1685 } |
OLD | NEW |