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

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

Issue 2402983002: [TimeZoneMonitor] Decouple renderer side impl from content to blink. (Closed)
Patch Set: Rebase only 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
1 # Copyright 2016 The Chromium Authors. All rights reserved. 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 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 source_set("test_support") { 5 source_set("test_support") {
6 testonly = true 6 testonly = true
7 7
8 sources = [ 8 sources = [
9 "components_test_suite.cc", 9 "components_test_suite.cc",
10 "components_test_suite.h", 10 "components_test_suite.h",
11 ] 11 ]
12 12
13 deps = [ 13 deps = [
14 "//components/content_settings/core/common", 14 "//components/content_settings/core/common",
15 "//components/gcm_driver:gcm_driver", 15 "//components/gcm_driver:gcm_driver",
16 "//components/signin/core/browser", 16 "//components/signin/core/browser",
17 "//mojo/edk/system",
18 "//net", 17 "//net",
19 "//testing/gtest", 18 "//testing/gtest",
20 "//ui/base", 19 "//ui/base",
21 "//ui/resources:ui_test_pak", 20 "//ui/resources:ui_test_pak",
22 ] 21 ]
23 22
24 public_deps = [ 23 public_deps = [
25 "//base/test:test_support", 24 "//base/test:test_support",
26 ] 25 ]
27 26
28 if (!is_ios) { 27 if (!is_ios) {
29 deps += [ 28 deps += [
30 "//components/invalidation/impl", 29 "//components/invalidation/impl",
31 "//components/policy/core/browser", 30 "//components/policy/core/browser",
32 "//components/safe_json", 31 "//components/safe_json",
33 "//ui/gl:test_support", 32 "//ui/gl:test_support",
34 ] 33 ]
35 34
36 public_deps += [ "//content/test:test_support" ] 35 public_deps += [ "//content/test:test_support" ]
37 } 36 }
38 } 37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698