Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(218)

Side by Side Diff: components/test/BUILD.gn

Issue 2358063002: Preparing components_perftests (Closed)
Patch Set: Fixing ios dependencies Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 source_set("test_support") {
6 testonly = true
7
8 sources = [
9 "components_test_suite.cc",
10 "components_test_suite.h",
11 ]
12
13 deps = [
14 "//components/content_settings/core/common",
15 "//components/gcm_driver:gcm_driver",
16 "//components/signin/core/browser",
17 "//mojo/edk/system",
18 "//net",
19 "//testing/gtest",
20 "//ui/base",
21 "//ui/resources:ui_test_pak",
22 ]
23
24 public_deps = [
25 "//base/test:test_support",
26 ]
27
28 if (!is_ios) {
29 deps += [
30 "//components/invalidation/impl",
31 "//components/policy/core/browser",
32 "//components/safe_json",
33 "//ui/gl:test_support",
34 ]
35
36 public_deps += [ "//content/test:test_support" ]
37 }
38 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698