OLD | NEW |
1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2015 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("//third_party/protobuf/proto_library.gni") | 5 import("//third_party/protobuf/proto_library.gni") |
6 | 6 |
7 source_set("drive") { | 7 source_set("drive") { |
8 sources = [ | 8 sources = [ |
9 "drive_api_util.cc", | 9 "drive_api_util.cc", |
10 "drive_api_util.h", | 10 "drive_api_util.h", |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 ] | 49 ] |
50 deps = [ | 50 deps = [ |
51 "//base", | 51 "//base", |
52 "//base:i18n", | 52 "//base:i18n", |
53 "//components/invalidation/public", | 53 "//components/invalidation/public", |
54 "//components/keyed_service/core", | 54 "//components/keyed_service/core", |
55 "//components/prefs", | 55 "//components/prefs", |
56 | 56 |
57 # TODO(lukasza): Remove this dependency (see DEPS file for more info). | 57 # TODO(lukasza): Remove this dependency (see DEPS file for more info). |
58 "//content/public/browser", | 58 "//content/public/browser", |
| 59 "//device/power_save_blocker", |
59 "//google_apis:google_apis", | 60 "//google_apis:google_apis", |
60 "//net:net", | 61 "//net:net", |
61 "//third_party/cacheinvalidation", | 62 "//third_party/cacheinvalidation", |
62 "//third_party/leveldatabase", | 63 "//third_party/leveldatabase", |
63 "//third_party/re2", | 64 "//third_party/re2", |
64 ] | 65 ] |
65 public_deps = [ | 66 public_deps = [ |
66 ":proto", | 67 ":proto", |
67 ] | 68 ] |
68 } | 69 } |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 deps = [ | 180 deps = [ |
180 ":drive", | 181 ":drive", |
181 ":drive_chromeos", | 182 ":drive_chromeos", |
182 ":proto", | 183 ":proto", |
183 "//base", | 184 "//base", |
184 "//components/prefs:test_support", | 185 "//components/prefs:test_support", |
185 "//content/test:test_support", | 186 "//content/test:test_support", |
186 "//google_apis:test_support", | 187 "//google_apis:test_support", |
187 ] | 188 ] |
188 } | 189 } |
OLD | NEW |